Skip to content

Commit

Permalink
Fix java discovery test failure (#24424)
Browse files Browse the repository at this point in the history
  • Loading branch information
yufengwangca authored and pull[bot] committed Jul 5, 2023
1 parent cf45345 commit 5224769
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -463,8 +463,6 @@ jobs:
build \
"
- name: Run Discover Tests
# temporarily disable the failing test, would re-enable it later
if: false
timeout-minutes: 10
run: |
scripts/run_in_build_env.sh \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ private final void getDiscoveredDevice() {
}

private final void logDevice(DiscoveredDevice device) {
System.out.format("\tDiscriminator: %ld", device.discriminator);
System.out.format("\tIP Address : %s", device.ipAddress);
System.out.println("Discovered node:");
System.out.format("\tDiscriminator: %d", device.discriminator);
System.out.format("\tIP Address : %s%n", device.ipAddress);
}
}

0 comments on commit 5224769

Please sign in to comment.