Supervisor / supervisor

Supervisor process control system for Unix (supervisord)
http://supervisord.org
Other
8.46k stars 1.24k forks source link

change serverurl option default value #1558

Closed wenjun93 closed 1 year ago

wenjun93 commented 1 year ago

inet (TCP) server disabled by default, cli should use uds address by default for convenience

wenjun93 commented 1 year ago

@mnaberez

mnaberez commented 1 year ago

inet (TCP) server disabled by default, cli should use uds address by default for convinence

I think this is reasonable considering inet_http_server is disabled by default. However, I do not want to change it because it has been the current default value for many years. There are probably a lot of existing installations depending on the current default value and I don't want them to break unexpectedly when they upgrade Supervisor.

If you want the command supervisorctl (no arguments) to connect to a different serverurl than the default, you can create a config file in one of the default locations. That file only needs a [supervisorctl]section.

wenjun93 commented 1 year ago

@mnaberez make sense