Skip to content

Commit

Permalink
Add test changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
shilmyhasan committed Jan 1, 2024
1 parent 6dd87df commit 9e9282b
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,10 @@ public static ApplicationThrottlePolicyDTO createApplicationThrottlePolicyDTO(St
applicationThrottlePolicyDTO.setDescription(description);
applicationThrottlePolicyDTO.setIsDeployed(isDeployed);
applicationThrottlePolicyDTO.setDefaultLimit(defaultLimit);
BurstLimitDTO burstLimitDTO = new BurstLimitDTO();
burstLimitDTO.setRateLimitCount(0);
burstLimitDTO.setRateLimitTimeUnit(null);
applicationThrottlePolicyDTO.setBurstLimit(burstLimitDTO);
return applicationThrottlePolicyDTO;
}

Expand Down

0 comments on commit 9e9282b

Please sign in to comment.