Skip to content

Commit

Permalink
Disable DevServices for live reload tests (#3131)
Browse files Browse the repository at this point in the history
  • Loading branch information
cristianonicolai authored Jul 24, 2023
1 parent 0e04e3b commit c1c529c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</parent>

<artifactId>kogito-quarkus-serverless-workflow-extension-live-reload-test</artifactId>
<name>Kogito :: Quarkus Workflows Extension :: Image Integration Tests</name>
<name>Kogito :: Quarkus Serverless Workflow Extension :: Live Reload Tests</name>

<dependencies>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,8 @@ private static String applicationProperties(String wireMockBaseUrl) {
"quarkus.grpc.clients.Greeter.host=localhost",
"quarkus.grpc.clients.Greeter.port=" + PORT,
"quarkus.grpc.server.port=" + PORT,
"quarkus.grpc.server.test-port=" + PORT)
"quarkus.grpc.server.test-port=" + PORT,
"quarkus.devservices.enabled=false")
.collect(Collectors.joining(System.lineSeparator()));
}

Expand Down

0 comments on commit c1c529c

Please sign in to comment.