summaryrefslogtreecommitdiffstats
path: root/sonar-ws/src
diff options
context:
space:
mode:
authorssjenka <ssjenka@ops-slave-fedora25-1.internal.sonarsource.com>2017-05-26 23:32:13 +0200
committerssjenka <ssjenka@ops-slave-fedora25-1.internal.sonarsource.com>2017-05-26 23:32:13 +0200
commite7f0cea1028718b89ec722202e464a71e694a177 (patch)
tree7a05667fddf9b5319e6d04cb0dd5d20af932f0df /sonar-ws/src
parent2bbb7bb6b9c1937a459adfe22f84d835a687fec7 (diff)
parent981424daf18ee985438af28344b562d2471f3a50 (diff)
downloadsonarqube-e7f0cea1028718b89ec722202e464a71e694a177.tar.gz
sonarqube-e7f0cea1028718b89ec722202e464a71e694a177.zip
Automatic merge from branch-6.4
* origin/branch-6.4: SONAR-8888 index active rules when creating organization remove avatar for system events on issues changelog popup (#2109) Use Trusty image on TravisCI
Diffstat (limited to 'sonar-ws/src')
-rw-r--r--sonar-ws/src/main/java/org/sonarqube/ws/client/qualityprofile/QualityProfilesService.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/sonar-ws/src/main/java/org/sonarqube/ws/client/qualityprofile/QualityProfilesService.java b/sonar-ws/src/main/java/org/sonarqube/ws/client/qualityprofile/QualityProfilesService.java
index 6b874052273..9d3cf61c216 100644
--- a/sonar-ws/src/main/java/org/sonarqube/ws/client/qualityprofile/QualityProfilesService.java
+++ b/sonar-ws/src/main/java/org/sonarqube/ws/client/qualityprofile/QualityProfilesService.java
@@ -74,7 +74,8 @@ public class QualityProfilesService extends BaseService {
.setParam(PARAM_DEFAULTS, request.getDefaults())
.setParam(PARAM_LANGUAGE, request.getLanguage())
.setParam(PARAM_PROFILE_NAME, request.getProfileName())
- .setParam(PARAM_PROJECT_KEY, request.getProjectKey()),
+ .setParam(PARAM_PROJECT_KEY, request.getProjectKey())
+ .setParam(PARAM_ORGANIZATION, request.getOrganizationKey()),
SearchWsResponse.parser());
}