Skip to content
Snippets Groups Projects
Unverified Commit 330d1172 authored by Kali Kaneko's avatar Kali Kaneko
Browse files

[bug] abort if cannot acquire pid

parent 00d9cdd2
Branches
Tags
No related merge requests found
......@@ -58,8 +58,7 @@ func initializeBitmask(errCh chan string, opts *InitOpts) {
err := pid.AcquirePID()
if err != nil {
log.Println("Error acquiring PID:", err)
errCh <- err.Error()
return
log.Fatal(err.Error())
}
b, err := bitmask.InitializeBitmask(ctx.cfg)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment