File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
main/java/org/sonarsource/sonarlint/omnisharp
test/java/org/sonarsource/sonarlint/omnisharp Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff 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 ());
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments