Skip to content

Commit

Permalink
SLVSCODE-603 update docs link with the new site
Browse files Browse the repository at this point in the history
  • Loading branch information
sophio-japharidze-sonarsource committed Oct 27, 2023
1 parent 9658840 commit 8ff8c1f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,9 @@ public void execute(SensorContext context) {
Thread.currentThread().interrupt();
} catch (ExecutionException e) {
if (e.getCause() instanceof TimeoutException) {
LOG.error("Timeout waiting for the solution to be loaded. You can find help on https://github.com/SonarSource/sonarlint-intellij/wiki/Rider");
LOG.error("Timeout waiting for the solution to be loaded." +
" You can find help on https://docs.sonarsource.com/sonarlint/intellij/using-sonarlint/scan-my-project/#supported-features-in-rider" +
" or https://docs.sonarsource.com/sonarlint/vs-code/getting-started/requirements/#c-analysis");
return;
}
throw new IllegalStateException("Analysis failed: " + e.getMessage(), e.getCause());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,9 @@ void logIfProjectLoadTimeout() throws Exception {
verifyNoInteractions(mockProtocol);

assertThat(logTester.logs(LoggerLevel.ERROR))
.contains("Timeout waiting for the solution to be loaded. You can find help on https://github.com/SonarSource/sonarlint-intellij/wiki/Rider");
.contains("Timeout waiting for the solution to be loaded." +
" You can find help on https://docs.sonarsource.com/sonarlint/intellij/using-sonarlint/scan-my-project/#supported-features-in-rider" +
" or https://docs.sonarsource.com/sonarlint/vs-code/getting-started/requirements/#c-analysis");
}

@Test
Expand Down

0 comments on commit 8ff8c1f

Please sign in to comment.