Skip to content

Commit

Permalink
Fix OpenshiftWithS2iTest
Browse files Browse the repository at this point in the history
JAVA_OPTS are not automatically added anymore.
But TBH, I wonder if it's the right move to not have these JAVA_OPTS as
we need to set the logger anyway.
  • Loading branch information
gsmet committed Dec 4, 2023
1 parent 8bc5a93 commit f6f8626
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,11 +86,6 @@ public void assertGeneratedResources() throws IOException {
assertThat(envVar.getName()).isEqualTo("JAVA_APP_JAR");
//assertThat(envVar.getValue()).isEqualTo("/deployments/quarkus-run.jar"); // this is flaky
});
assertThat(envVars).anySatisfy(envVar -> {
assertThat(envVar.getName()).isEqualTo("JAVA_OPTIONS");
assertThat(envVar.getValue())
.contains("-Djava.util.logging.manager=org.jboss.logmanager.LogManager");
});
});
});

Expand Down

0 comments on commit f6f8626

Please sign in to comment.