Skip to content

Commit

Permalink
fixing style
Browse files Browse the repository at this point in the history
Signed-off-by: salaboy <Salaboy@gmail.com>
  • Loading branch information
salaboy committed Jul 24, 2024
1 parent 93bb3b0 commit 83a460a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@
public class DaprContainer extends GenericContainer<DaprContainer> {

public enum DaprLogLevel {
error,
warn,
info,
debug
ERROR,
WARN,
INFO,
DEBUG
}

public static class Subscription {
Expand Down Expand Up @@ -159,7 +159,7 @@ public String getVersion() {
private final Set<Subscription> subscriptions = new HashSet<>();
private String appName;
private Integer appPort = 8080;
private DaprLogLevel daprLogLevel = DaprLogLevel.info;
private DaprLogLevel daprLogLevel = DaprLogLevel.INFO;
private String appChannelAddress = "localhost";
private String placementService = "placement";
private static final DockerImageName DEFAULT_IMAGE_NAME = DockerImageName.parse("daprio/daprd");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ spec:
- name: redisHost
value: redis:6379
- name: redisPassword
value: ""
value: ""
2 changes: 1 addition & 1 deletion testcontainers-dapr/src/test/resources/logback-test.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
<logger name="tc" level="DEBUG"/>
<logger name="com.github.dockerjava" level="WARN"/>
<logger name="com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.wire" level="OFF"/>
</configuration>
</configuration>

0 comments on commit 83a460a

Please sign in to comment.