Skip to content

Commit

Permalink
experiment
Browse files Browse the repository at this point in the history
Signed-off-by: Yury-Fridlyand <yury.fridlyand@improving.com>
  • Loading branch information
Yury-Fridlyand committed Nov 23, 2024
1 parent 61fd19a commit db67a49
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/java.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ jobs:
working-directory: java/jars
run: |
for file in bundle*.jar; do jar xf $file; done
- name: tcpdump
run: |
if ${{ matrix.host.OS == 'ubuntu' }}; then
Expand All @@ -127,7 +127,7 @@ jobs:
- name: Build java client
working-directory: java
run: ./gradlew :integTest:test --tests '*.*password*'
run: ./gradlew --continue build -x javadoc

- name: tcpdump
run: sudo killall -9 tcpdump
Expand Down
4 changes: 2 additions & 2 deletions java/integTest/src/test/java/glide/TestConfiguration.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ public final class TestConfiguration {
public static final boolean TLS = Boolean.parseBoolean(System.getProperty("test.server.tls", ""));

static {
Logger.init(Logger.Level.OFF);
Logger.setLoggerConfig(Logger.Level.OFF);
Logger.init(Logger.Level.TRACE);
Logger.setLoggerConfig(Logger.Level.TRACE);
try {
BaseClient client =
!STANDALONE_HOSTS[0].isEmpty()
Expand Down

0 comments on commit db67a49

Please sign in to comment.