Skip to content

Commit

Permalink
Bug fix
Browse files Browse the repository at this point in the history
Signed-off-by: Rishab Nahata <[email protected]>
  • Loading branch information
imRishN committed Oct 26, 2022
1 parent 3a97f68 commit a46550a
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,9 @@ public TimeValue getDelayTimeout() {
}

public void setNoDelay(boolean noDelay) {
this.delayTimeout = TimeValue.ZERO;
if(noDelay) {
this.delayTimeout = TimeValue.ZERO;
}
this.noDelay = noDelay;
}

Expand Down

0 comments on commit a46550a

Please sign in to comment.