mirror of https://github.com/dapr/java-sdk.git
reset empty lines added
Signed-off-by: Cassandra Coyle <cassie@diagrid.io>
This commit is contained in:
parent
015d200163
commit
46f6c3b265
|
|
@ -55,9 +55,7 @@ public class DaprTestContainersConfig {
|
||||||
.withAppPort(8080)
|
.withAppPort(8080)
|
||||||
.withNetwork(network)
|
.withNetwork(network)
|
||||||
.withAppHealthCheckPath("/actuator/health")
|
.withAppHealthCheckPath("/actuator/health")
|
||||||
.withAppChannelAddress("host.testcontainers.internal")
|
.withAppChannelAddress("host.testcontainers.internal");
|
||||||
.withDaprLogLevel(DaprLogLevel.DEBUG)
|
|
||||||
.withLogConsumer(outputFrame -> System.out.println(outputFrame.getUtf8String()));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -84,8 +84,6 @@ public class DaprContainer extends GenericContainer<DaprContainer> {
|
||||||
private boolean shouldReusePlacement;
|
private boolean shouldReusePlacement;
|
||||||
private boolean shouldReuseScheduler;
|
private boolean shouldReuseScheduler;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates a new Dapr container.
|
* Creates a new Dapr container.
|
||||||
*
|
*
|
||||||
|
|
@ -169,8 +167,6 @@ public class DaprContainer extends GenericContainer<DaprContainer> {
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
public DaprContainer withAppName(String appName) {
|
public DaprContainer withAppName(String appName) {
|
||||||
this.appName = appName;
|
this.appName = appName;
|
||||||
return this;
|
return this;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue