Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ public DaprContainer daprContainer(Network daprNetwork, RabbitMQContainer rabbit
.withLogConsumer(outputFrame -> System.out.println(outputFrame.getUtf8String()))
.withAppPort(8081).withAppChannelAddress("host.testcontainers.internal")
.withReusablePlacement(reuse)
.withReusableScheduler(reuse)
.withAppHealthCheckPath("/actuator/health")
.dependsOn(rabbitMQContainer);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ public DaprContainer withReusablePlacement(boolean shouldReusePlacement) {
return this;
}

public DaprContainer withReuseScheduler(boolean shouldReuseScheduler) {
public DaprContainer withReusableScheduler(boolean shouldReuseScheduler) {
this.shouldReuseScheduler = shouldReuseScheduler;
return this;
}
Expand Down
Loading