Skip to content

Commit

Permalink
[hotfix][runtime] fix formatting in MiniClusterResource
Browse files Browse the repository at this point in the history
  • Loading branch information
sjwiesman committed Nov 12, 2021
1 parent 3262d9b commit 1529b78
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,7 @@ public void cancelAllJobs() {
.toMilliseconds()));

final List<CompletableFuture<Acknowledge>> jobCancellationFutures =
miniCluster
.listJobs()
miniCluster.listJobs()
.get(
jobCancellationDeadline.timeLeft().toMillis(),
TimeUnit.MILLISECONDS)
Expand All @@ -125,8 +124,7 @@ public void cancelAllJobs() {
CommonTestUtils.waitUntilCondition(
() -> {
final long unfinishedJobs =
miniCluster
.listJobs()
miniCluster.listJobs()
.get(
jobCancellationDeadline.timeLeft().toMillis(),
TimeUnit.MILLISECONDS)
Expand Down

0 comments on commit 1529b78

Please sign in to comment.