Server shuts down too eagerly with --inferior
#2
Loading…
Reference in New Issue
There is no content yet.
Delete Branch "%!s(<nil>)"
Deleting a branch is permanent. Although the deleted branch may exist for a short time before cleaning up, in most cases it CANNOT be undone. Continue?
Running
syndicate-server --inferior
doesn't last long enough for it to pick up assertions from its parent. TheActor::top(trace_collector, move |t| { ... }).await??;
needs to not complete in inferior mode.Probably acceptable to just stay around forever, but it's also worth thinking about whether, in inferior mode, it ever makes sense to terminate voluntarily? If so, when?
Workaround: supply
-c /dev/null
or similar on the command-line.