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
Checking if self.running_procs already equals zero before decrementing it in remove_process does solve the immediate issue, but ideally the number should already match up.
The text was updated successfully, but these errors were encountered:
Interesting, it seems to have to do with the receiving of exit messages from the runtime. The daemon somehow does not handle some of them correctly so it might decrement running processes more than once? It is not priority bug, but should be good if someone wants to take a stab.
This works on the ubuntu 20.04 container (vs the 24.04 system I develop on).
Looking at this further, I believe this is the same issue as #738, since, similarly, echo $(./test.sh) works while ./test.sh leads to the exception above.
Possibly low priority since I only found the problem while fixing another bug. Minimal test case:
Exception:
Checking if self.running_procs already equals zero before decrementing it in
remove_process
does solve the immediate issue, but ideally the number should already match up.The text was updated successfully, but these errors were encountered: