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
due to the error propagation from the Writer to the retry_writer,
the call of msgs, err := w.syslogConverter.ToRFC5424(env, w.hostname)
can trigger a retry on a parsing issue, resulting in logs suggesting there where some connection issues, when the issue was indeed a parsing failure.
Retrying a parsing failure will also not resolve on retries, making the loop inefficient in this case.
The text was updated successfully, but these errors were encountered:
due to the error propagation from the Writer to the retry_writer,
the call of
msgs, err := w.syslogConverter.ToRFC5424(env, w.hostname)
can trigger a retry on a parsing issue, resulting in logs suggesting there where some connection issues, when the issue was indeed a parsing failure.
Retrying a parsing failure will also not resolve on retries, making the loop inefficient in this case.
The text was updated successfully, but these errors were encountered: