Skip to content

Commit

Permalink
Allow-list quarkus deprecation warning.
Browse files Browse the repository at this point in the history
Until quarkusio/quarkus#37072 is fixed.
  • Loading branch information
jerboaa committed Nov 15, 2023
1 parent b8a857a commit c07dd0c
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,9 @@ public Pattern[] get(boolean inContainer) {
Pattern.compile(".*Warning: Could not register io.netty.* queryAllPublicMethods for reflection.*"),
// netty 4 which doesn't have the relevant native config in the lib. See https://github.com/netty/netty/pull/13596
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.*"),
Pattern.compile(".*Warning: Please re-evaluate whether any experimental option is required, and either remove or unlock it\\..*")
Pattern.compile(".*Warning: Please re-evaluate whether any experimental option is required, and either remove or unlock it\\..*"),
// Allow-list spurious deprecation warning until the bug is fixed: https://github.com/quarkusio/quarkus/issues/37072
Pattern.compile(".*\\[io\\.qua\\.run\\.con\\.DeprecatedRuntimePropertiesRecorder\\] \\(main\\) The 'quarkus\\.http\\.auth\\.form\\.redirect-after-login' config property is deprecated and should not be used anymore.*")
};
}
},
Expand Down

0 comments on commit c07dd0c

Please sign in to comment.