Skip to content

Commit c26e102

Browse files
authored
JS-714 EZ SQ issue - break string (#5369)
1 parent 1136270 commit c26e102

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

sonar-plugin/bridge/src/main/java/org/sonar/plugins/javascript/bridge/BridgeServerImpl.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,8 @@ private BridgeResponse request(String json, String endpoint) {
385385
return new BridgeServer.BridgeResponse(new String(response.body(), StandardCharsets.UTF_8));
386386
} catch (IOException e) {
387387
throw new IllegalStateException(
388-
"The bridge server is unresponsive. It might be because you don't have enough memory, so please go see the troubleshooting section: https://docs.sonarsource.com/sonarqube-server/latest/analyzing-source-code/languages/javascript-typescript-css/#slow-or-unresponsive-analysis",
388+
"The bridge server is unresponsive. It might be because you don't have enough memory, so please go see the troubleshooting section: " +
389+
"https://docs.sonarsource.com/sonarqube-server/latest/analyzing-source-code/languages/javascript-typescript-css/#slow-or-unresponsive-analysis",
389390
e
390391
);
391392
}

0 commit comments

Comments
 (0)