1097 Abandon Call Disposition Count#357
Conversation
|
Important Review skippedAuto reviews are disabled on base/target branches other than the default branch. Please check the settings in the CodeRabbit UI or the You can disable this status message by setting the Use the checkbox below for a quick retry:
✨ Finishing touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
|
| @RequestMapping(value = "/getDispositionCount", method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON, produces = MediaType.APPLICATION_JSON, headers = "Authorization") | ||
| public String getDispositionCount(@RequestBody String request, HttpServletRequest serverRequest) { | ||
| OutputResponse response = new OutputResponse(); | ||
| logger.info("getDispositionCount received a request " + request); |
Check notice
Code scanning / SonarCloud
Logging should not be vulnerable to injection attacks Low
| ObjectMapper objectMapper = new ObjectMapper(); | ||
| String ctiURI = ConfigProperties.getPropertyByName("get-disposition-count-URL"); | ||
| String serverURL = ConfigProperties.getPropertyByName("cti-server-ip"); | ||
| logger.info("Request="+request + ":: CTI URL="+ ctiURI + ":: Server URL="+ serverURL); |
Check notice
Code scanning / SonarCloud
Logging should not be vulnerable to injection attacks Low




📋 Description
JIRA ID:
AMM-1324
✅ Type of Change