Skip to content

Commit fb93cff

Browse files
SLOMNI-54 Fix dead link in log message
1 parent 3291531 commit fb93cff

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ public void execute(SensorContext context) {
107107
if (e.getCause() instanceof TimeoutException) {
108108
LOG.error("Timeout waiting for the solution to be loaded." +
109109
" You can find help on https://docs.sonarsource.com/sonarlint/intellij/using-sonarlint/scan-my-project/#supported-features-in-rider" +
110-
" or https://docs.sonarsource.com/sonarlint/vs-code/getting-started/requirements/#c-analysis");
110+
" or https://docs.sonarsource.com/sonarlint/vs-code/getting-started/requirements/#csharp-analysis");
111111
return;
112112
}
113113
throw new IllegalStateException("Analysis failed: " + e.getMessage(), e.getCause());

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ void logIfProjectLoadTimeout() throws Exception {
197197
assertThat(logTester.logs(LoggerLevel.ERROR))
198198
.contains("Timeout waiting for the solution to be loaded." +
199199
" You can find help on https://docs.sonarsource.com/sonarlint/intellij/using-sonarlint/scan-my-project/#supported-features-in-rider" +
200-
" or https://docs.sonarsource.com/sonarlint/vs-code/getting-started/requirements/#c-analysis");
200+
" or https://docs.sonarsource.com/sonarlint/vs-code/getting-started/requirements/#csharp-analysis");
201201
}
202202

203203
@Test

0 commit comments

Comments
 (0)