Skip to content

Commit

Permalink
Fix quotas check for RDS. Fixes awslabs#401. (awslabs#402)
Browse files Browse the repository at this point in the history
Co-authored-by: PoeppingT <[email protected]>
  • Loading branch information
PoeppingT and PoeppingT authored Nov 3, 2022
1 parent 4902ec9 commit 48de321
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public QuotaCheck checkQuotas() {
deployedCountMap.clear();
deployedCountMap.put("DB clusters", Double.valueOf(getRdsClusters()));
deployedCountMap.put("DB instances", Double.valueOf(getRdsInstances()));
getQuotas(serviceCode);
quotasMap = getQuotas(serviceCode);
exceedsLimit = compareValues(retList, deployedCountMap, serviceCode, quotasMap, builder);
reportBackError = reportBackError || exceedsLimit;

Expand Down

0 comments on commit 48de321

Please sign in to comment.