You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, before any scan/update action is called, there is new configd process being created:
// drweb needs to have the daemon started firstconfigd:=exec.CommandContext(ctx, "/opt/drweb.com/bin/drweb-configd", "-d")
_, err=configd.Output()
assert(err)
deferconfigd.Process.Kill()
which is then incorrectly cleaned up as this daemon creates child processes in the meantime and configd.Process.Kill() will not kill grandchildren.
The text was updated successfully, but these errors were encountered:
Hi,
Currently, before any scan/update action is called, there is new configd process being created:
which is then incorrectly cleaned up as this daemon creates child processes in the meantime and
configd.Process.Kill()
will not kill grandchildren.The text was updated successfully, but these errors were encountered: