유량제어 오류 메시지 개선 -> API 호출 한도 초과 [테스트 그룹1: 10req/MIN]

This commit is contained in:
yunjy-hp
2025-12-11 14:27:12 +09:00
parent 730cdd96fa
commit 6b71d4414c
5 changed files with 39 additions and 14 deletions
@@ -470,11 +470,11 @@ public class InflowControlManager implements Lifecycle, Bucket {
}
@Override
public boolean isGroupPass(String groupId) {
public String isGroupPass(String groupId) {
CustomGroupBucket b = groupBucketList.get(groupId);
if (b == null)
return true;
return null;
return b.tryConsume();
}