Skip to content

Commit

Permalink
Address review comments PR-400
Browse files Browse the repository at this point in the history
  • Loading branch information
PasinduYeshan committed Jul 25, 2024
1 parent abc25a2 commit dd61ed5
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 dd61ed5

Please sign in to comment.