-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8950eed
commit 3eee219
Showing
2 changed files
with
3 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,8 +32,7 @@ public void eTranslationCallback( | |
@RequestParam(value = "external-reference", required = true) String externalReference, | ||
@RequestBody String body) { | ||
if(LOGGER.isDebugEnabled()) { | ||
LOGGER.debug("eTranslation callback on translation api has been received with the request-id: {}, " | ||
+ "and the external-reference: {}", requestId, externalReference); | ||
LOGGER.debug("eTranslation callback on translation api has been received with the external-reference: {}", externalReference); | ||
Check notice Code scanning / SonarCloud Logging should not be vulnerable to injection attacks Low
Change this code to not log user-controlled data. See more on SonarCloud
|
||
} | ||
if(externalReference!=null && body!=null) { | ||
redisTemplate.convertAndSend(externalReference, body); | ||
|