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
This usually means that a background/disowned process was started by the script and that the background process is still running and has references to file descriptors (usually stdout or stderr) when the script exits.
A simple fix is to redirect stdout and stderr (e.g. to a file, or discard):
my_background_process >/dev/null 2>&1 &
However, we can fix this by:
Improving the error message and linking to docs
Investigate if there's a way we can exit cleanly even when redirection isn't used
The text was updated successfully, but these errors were encountered:
Sometimes
coder_script
s exit with:This usually means that a background/disowned process was started by the script and that the background process is still running and has references to file descriptors (usually
stdout
orstderr
) when the script exits.A simple fix is to redirect stdout and stderr (e.g. to a file, or discard):
However, we can fix this by:
The text was updated successfully, but these errors were encountered: