Skip to content

Commit 8ff8c1f

Browse files
SLVSCODE-603 update docs link with the new site
1 parent 9658840 commit 8ff8c1f

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

omnisharp-plugin/src/main/java/org/sonarsource/sonarlint/omnisharp/OmnisharpSensor.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,9 @@ public void execute(SensorContext context) {
104104
Thread.currentThread().interrupt();
105105
} catch (ExecutionException e) {
106106
if (e.getCause() instanceof TimeoutException) {
107-
LOG.error("Timeout waiting for the solution to be loaded. You can find help on https://github.com/SonarSource/sonarlint-intellij/wiki/Rider");
107+
LOG.error("Timeout waiting for the solution to be loaded." +
108+
" You can find help on https://docs.sonarsource.com/sonarlint/intellij/using-sonarlint/scan-my-project/#supported-features-in-rider" +
109+
" or https://docs.sonarsource.com/sonarlint/vs-code/getting-started/requirements/#c-analysis");
108110
return;
109111
}
110112
throw new IllegalStateException("Analysis failed: " + e.getMessage(), e.getCause());

omnisharp-plugin/src/test/java/org/sonarsource/sonarlint/omnisharp/OmnisharpSensorTests.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,9 @@ void logIfProjectLoadTimeout() throws Exception {
192192
verifyNoInteractions(mockProtocol);
193193

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

198200
@Test

0 commit comments

Comments
 (0)