Skip to content

Commit e8ca871

Browse files
authored
Merge pull request #410 from darkspirit510/fix-sonarqube-reader
fix wrong hostname.
2 parents 2f279f9 + dc9abba commit e8ca871

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/owasp/benchmark/report/sonarqube/SonarReport.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public class SonarReport {
2424
private static final String SONAR_USER = "admin";
2525
private static final String SONAR_PASSWORD = "P4ssword!!!!";
2626
private static final String SONAR_PROJECT = "benchmark";
27-
public static final String SONAR_HOST = "ubuntu-server";
27+
public static final String SONAR_HOST = "localhost";
2828
public static final String SONAR_PORT = "9876";
2929

3030
private static final int PAGE_SIZE = 500;

0 commit comments

Comments
 (0)