Skip to content

Commit 3df41bf

Browse files
committed
Default to unfair locking semantics for the ThrottleRequestFilter
1 parent 77bf3be commit 3df41bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

api/src/main/java/org/asynchttpclient/extra/ThrottleRequestFilter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public ThrottleRequestFilter(int maxConnections) {
3535
}
3636

3737
public ThrottleRequestFilter(int maxConnections, int maxWait) {
38-
this(maxConnections, maxWait, true);
38+
this(maxConnections, maxWait, false);
3939
}
4040

4141
public ThrottleRequestFilter(int maxConnections, int maxWait, boolean fair) {

0 commit comments

Comments
 (0)