diff options
author | Duarte Meneses <duarte.meneses@sonarsource.com> | 2020-04-22 13:26:47 -0500 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2020-05-25 20:05:20 +0000 |
commit | bde9afd00f1ee86a583892355a256b0d9250a57a (patch) | |
tree | dfbc0ef20c54086a4445aa20ed01535ed3f86523 /sonar-ws/src | |
parent | ffd176a905d758ebcbf120a60e7bec1a96cdd559 (diff) | |
download | sonarqube-bde9afd00f1ee86a583892355a256b0d9250a57a.tar.gz sonarqube-bde9afd00f1ee86a583892355a256b0d9250a57a.zip |
SONAR-13221 Feedback from review and fix tests
Diffstat (limited to 'sonar-ws/src')
-rw-r--r-- | sonar-ws/src/main/protobuf/ws-qualitygates.proto | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-qualitygates.proto b/sonar-ws/src/main/protobuf/ws-qualitygates.proto index 9bddea9ed6b..097e3f56723 100644 --- a/sonar-ws/src/main/protobuf/ws-qualitygates.proto +++ b/sonar-ws/src/main/protobuf/ws-qualitygates.proto @@ -102,7 +102,7 @@ message CreateResponse { // POST api/qualitygates/create_condition message CreateConditionResponse { - optional int64 id = 1; + optional string id = 1; optional string metric = 2; optional string op = 3; optional string error = 5; @@ -110,7 +110,7 @@ message CreateConditionResponse { // POST api/qualitygates/update_condition message UpdateConditionResponse { - optional int64 id = 1; + optional string id = 1; optional string metric = 2; optional string op = 3; optional string error = 5; @@ -125,7 +125,7 @@ message ShowWsResponse { optional Actions actions = 5; message Condition { - optional int64 id = 1; + optional string id = 1; optional string metric = 2; optional string op = 4; optional string error = 6; |