Skip to content

Commit

Permalink
Allow list old Mandrel version warning for JFR perf tests
Browse files Browse the repository at this point in the history
The fix from #265 was incomplete. The JFR perf tests use the JFR
config for allow-listed log lines.
  • Loading branch information
jerboaa authored and zakkak committed Jul 15, 2024
1 parent 25f2c20 commit 9b8b557
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -290,6 +290,8 @@ public Pattern[] get(boolean inContainer) {
// 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.*"),
// Allow the quarkus main warning of older Mandrel releases
Pattern.compile(".*\\[WARNING\\] \\[io.quarkus.deployment.pkg.steps.NativeImageBuildStep\\] You are using an older version of GraalVM or Mandrel : 23\\.0.* Quarkus currently supports 23.1.* Please upgrade to this version\\..*"),
};
}
}
Expand Down

0 comments on commit 9b8b557

Please sign in to comment.