Skip to content

Commit

Permalink
HDFS-17465. RBF: Use ProportionRouterRpcFairnessPolicyController get …
Browse files Browse the repository at this point in the history
…“'ava.Lang. Error: Maximum permit count exceeded' (#6727)
  • Loading branch information
zhangxiping1 authored Apr 15, 2024
1 parent f49a4df commit 87cc2f1
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,8 @@ public boolean acquirePermit(String nsId) {
public void releasePermit(String nsId) {
if (contains(nsId)) {
super.releasePermit(nsId);
} else {
super.releasePermit(DEFAULT_NS);
}
super.releasePermit(DEFAULT_NS);
}
}

0 comments on commit 87cc2f1

Please sign in to comment.