-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Default value for Syslog counting framing #48479
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
Conversation
Closes quarkusio#48036 Signed-off-by: Martin Bartoš <mabartos@redhat.com>
This comment has been minimized.
This comment has been minimized.
Status for workflow
|
That's a tricky one as this could theoretically break applications that (inadvertedly and incorrectly) depend on the previous behavior. Consider the following use case: quarkus.log.syslog.use-counting-framing=true #this comment should not be here and results in the value being `false` If we backport then this application will no longer build. |
@geoand Thanks for the comment. Just thought that we could simply set the default value to
I don't probably fully understand. If they explicitly specify the property, there should not be any change for them, right? |
If they set the property in the way I showed in the hypothetical example above, with 3.20 they would effectively have |
@geoand Ahh, I didn't know about the issue with inline comments.
Understandable; we'll probably keep the similar functionality on our side until we are on the next Quarkus LTS. Thanks! |
🙏🏽 |
The expected behavior described in the #48036 issue seems reasonable and also the suggested approach on how to achieve it described in #48036 (comment).
It should be in compliance with RFC-5425 and RFC-6587.
@dmlloyd Could you please check it? Thanks!