Server shuts down too eagerly with --inferior
#2
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. 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.