Skip to content

Commit

Permalink
Allow lists for changed metadata config files
Browse files Browse the repository at this point in the history
Closes: Karm#261
  • Loading branch information
jerboaa committed Jun 26, 2024
1 parent 507f06e commit 3f6c281
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,12 @@ public Pattern[] get(boolean inContainer) {
Pattern.compile(".*The request could not be executed.*:4317.*"),
// MacOS https://github.com/quarkusio/quarkus/issues/40938
Pattern.compile(".*Can not find io.netty.resolver.dns.macos.MacOSDnsServerAddressStreamProvider.*"),
// Upstream GraalVM issue due to changed metadata format. See https://github.com/oracle/graal/issues/9057
// and https://github.com/oracle/graal/commit/5fc14c42fd8bbad0c8e661b4ebd8f96255f86e6b
Pattern.compile(".*Warning: Option 'DynamicProxyConfigurationResources' is deprecated and might be removed in a future release\\. Please refer to the GraalVM release notes.*"),
Pattern.compile(".*Warning: Option 'DynamicProxyConfigurationResources' is deprecated and might be removed in a future release\\. This can be caused by a proxy-config.json file in your META-INF directory.*"),
// Dependency sources plugin may produce this warning on some systems
Pattern.compile(".*\\[WARNING\\] Parameter 'local' is deprecated core expression; Avoid use of ArtifactRepository type\\. If you need access to local repository, switch to .* expression and get LRM from it instead\\..*"),
};
}
},
Expand Down

0 comments on commit 3f6c281

Please sign in to comment.