Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions stub/src/main/java/io/grpc/stub/ClientCalls.java
Original file line number Diff line number Diff line change
Expand Up @@ -931,7 +931,7 @@ public <T> void waitAndDrainWithTimeout(boolean waitForever, long end,
} while ((runnable = poll()) != null);
// Wake everything up now that we've done something and they can check in their outer loop
// if they can continue or need to wait again.
signallAll();
signalAll();
}
}

Expand All @@ -949,11 +949,11 @@ public void drain() throws InterruptedException {
}

if (didWork) {
signallAll();
signalAll();
}
}

private void signallAll() {
private void signalAll() {
waiterLock.lock();
try {
waiterCondition.signalAll();
Expand Down