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
Logic for detecting config files as commands should be more precise, possibly checking if the entire command is a valid filename/path rather than a bash (or other) command
The text was updated successfully, but these errors were encountered:
I am using PM2 to manage a python web service, initiated with a bash command.
this works:
but when i try to specify a uvicorn log config
log_config.yaml
, pm2 fails to start the service:I suspect this is due to the logic which determines if the supplied command is a pm2 config file:
pm2/lib/Common.js
Lines 283 to 294 in e3a327f
which is called when starting the service
pm2/lib/API.js
Line 328 in e3a327f
Logic for detecting config files as commands should be more precise, possibly checking if the entire command is a valid filename/path rather than a bash (or other) command
The text was updated successfully, but these errors were encountered: