Skip to content

Commit

Permalink
Merge pull request #408 from PasinduYeshan/arc-pr-400
Browse files Browse the repository at this point in the history
Address review comments PR-400
  • Loading branch information
lashinijay committed Jul 25, 2024
2 parents abc25a2 + dd61ed5 commit 99ec9b4
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,13 +92,11 @@ public SCIMResponse processBulkData(String data, UserManager userManager) {
if (totalOperationCount > maxOperationCount) {
if (logger.isDebugEnabled()) {
logger.debug(String.format(ResponseCodeConstants.ERROR_DESC_MAX_OPERATIONS_EXCEEDED,
totalOperationCount,
maxOperationCount));
totalOperationCount, maxOperationCount));
}
throw new PayloadTooLargeException(
String.format(ResponseCodeConstants.ERROR_DESC_MAX_OPERATIONS_EXCEEDED,
totalOperationCount,
maxOperationCount));
totalOperationCount, maxOperationCount));
}

// Get bulk response data.
Expand Down

0 comments on commit 99ec9b4

Please sign in to comment.