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
{{ message }}
This repository was archived by the owner on May 4, 2023. It is now read-only.
# This is a comment
foo: sleep 3
bar: sleep 3
baz: sleep 3
It should wait three seconds and then terminate, but instead it terminates immediately. This appears to be because the first line is being parsed as a command - parse_procfile_line of a string without a : sets both the name and the command to the full string. The command # This is a comment then terminates immediately, causing poorman itself to terminate.