Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[dockers/supervisord]: Don't use deprecated config options #20980

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Commits on Dec 1, 2024

  1. [dockers/supervisord]: Don't use deprecated config options

    Supervisord emits warnings due to the use of `stdout_logfile=syslog`
    and `stderr_logfile=syslog`.  Replace with the modern configuration
    options of `stdout_syslog=true` and `stderr_syslog=true` and set
    the log file itself to `NONE` so it doesn't generate a file-based
    log.
    
    Warnings corrected look like:
    ```
    2024 Dec  1 15:31:06.467218 sw2 INFO pmon#supervisord 2024-12-01 15:31:04,033 WARN For [program:xcvrd], stderr_logfile=syslog but this is deprecated and will be removed.  Use stderr_syslog=true to enable syslog instead.
    ```
    
    Signed-off-by: Brad House (@bradh352)
    bradh352 committed Dec 1, 2024
    Configuration menu
    Copy the full SHA
    d25140f View commit details
    Browse the repository at this point in the history

Commits on Dec 3, 2024

  1. Configuration menu
    Copy the full SHA
    df36021 View commit details
    Browse the repository at this point in the history