crypto: fix build with OPENSSL_NO_ENGINE [Backport to 4.2]#11874
Conversation
Signed-off-by: lecaros <lecaros@chronosphere.io>
Signed-off-by: lecaros <lecaros@chronosphere.io>
ENGINE was deprecated in openssl 3.0 (and disabled in RHEL 10), and completely removed in 4.0. Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
|
Important Review skippedAuto reviews are disabled on base/target branches other than the default branch. Please check the settings in the CodeRabbit UI or the ⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: b1f73b7a37
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| if (primary_key_check(k, LOGDNA_LEVEL_KEY, sizeof(LOGDNA_LEVEL_KEY) - 1) == FLB_TRUE || | ||
| primary_key_check(k, LOGDNA_SEVERITY_KEY, sizeof(LOGDNA_SEVERITY_KEY) - 1) == FLB_TRUE) { | ||
| is_primary = FLB_TRUE; |
There was a problem hiding this comment.
Preserve unpromoted level/severity values
When exclude_promoted_keys is enabled and a record contains both level and severity, this marks both keys as primary even though only the first one is actually emitted as the top-level level. For example { "level": "info", "severity": "warning" } with level first will output top-level level: info and then omit severity from the filtered line, so the warning value is lost. Please only exclude the level/severity key that was actually promoted, or keep the later value in the line body.
Useful? React with 👍 / 👎.
Backporting of #11771.
Enter
[N/A]in the box, if an item is not applicable to your change.Testing
Before we can approve your change; please submit the following in a comment:
If this is a change to packaging of containers or native binaries then please confirm it works for all targets.
ok-package-testlabel to test for all targets (requires maintainer to do).Documentation
Backporting
Fluent Bit is licensed under Apache 2.0, by submitting this pull request I understand that this code will be released under the terms of that license.