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

Remove allowed log lines #446

Merged
merged 2 commits into from
Dec 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@ public enum WhitelistLogLines {
// netty 4 which doesn't have the relevant native config in the lib. See https://github.com/netty/netty/pull/13596
Pattern.compile(".*Warning: Please re-evaluate whether any experimental option is required, and either remove or unlock it\\..*"),
Pattern.compile(".*Warning: The option '-H:ReflectionConfigurationResources=META-INF/native-image/io\\.netty/netty-transport/reflection-config\\.json' is experimental and must be enabled via.*"),
// TODO https://github.com/quarkusio/quarkus/issues/44914
Pattern.compile(".*LogManager error of type GENERIC_FAILURE: Section header cannot be encoded into charset \"windows-1252\".*")
}),
FULL_MICROPROFILE(new Pattern[]{
// Some artifacts names...
Expand All @@ -38,8 +36,6 @@ public enum WhitelistLogLines {
// netty 4 which doesn't have the relevant native config in the lib. See https://github.com/netty/netty/pull/13596
Pattern.compile(".*Warning: Please re-evaluate whether any experimental option is required, and either remove or unlock it\\..*"),
Pattern.compile(".*Warning: The option '-H:ReflectionConfigurationResources=META-INF/native-image/io\\.netty/netty-transport/reflection-config\\.json' is experimental and must be enabled via.*"),
// TODO https://github.com/quarkusio/quarkus/issues/44914
Pattern.compile(".*LogManager error of type GENERIC_FAILURE: Section header cannot be encoded into charset \"windows-1252\".*")
}),
GENERATED_SKELETON(new Pattern[]{
// Harmless warning
Expand Down Expand Up @@ -90,10 +86,6 @@ public enum WhitelistLogLines {
Pattern.compile(".*Checksum validation failed, expected 2811ba27a71a8bda0602161ffe2f6e1429da8068 but is 36257165a0945753efb3f9d473d86c6f4c6c6f6e.*"),
Pattern.compile(".*Could not validate integrity of download from https://repo.maven.apache.org/maven2/org/jboss/arquillian/arquillian-bom/1.7.0.Final/arquillian-bom-1.7.0.Final.pom.*"),
Pattern.compile(".*org.eclipse.aether.util.concurrency.RunnableErrorForwarder.*"),
// TODO: https://github.com/quarkusio/quarkus/issues/42237
Pattern.compile(".*Failed to index org.springframework.aot.hint.annotation.Reflective.*"),
// TODO https://github.com/quarkusio/quarkus/issues/44914
Pattern.compile(".*LogManager error of type GENERIC_FAILURE: Section header cannot be encoded into charset \"windows-1252\".*")
}),
// Quarkus is not being gratefully shutdown in Windows when running in Dev mode.
// Reported by https://github.com/quarkusio/quarkus/issues/14647.
Expand Down
Loading