Browse Source

SONAR-21559 Fix failing QA

tags/10.4.0.87286
Wouter Admiraal 3 months ago
parent
commit
d72acd5707

+ 1
- 1
sonar-ws/src/main/java/org/sonarqube/ws/client/settings/SettingsService.java View File

@@ -64,7 +64,7 @@ public class SettingsService extends BaseService {
*/
public EncryptWsResponse encrypt(EncryptRequest request) {
return call(
new GetRequest(path("encrypt"))
new PostRequest(path("encrypt"))
.setParam("value", request.getValue()),
EncryptWsResponse.parser());
}

Loading…
Cancel
Save