diff options
author | Matteo Mara <matteo.mara@sonarsource.com> | 2023-03-30 13:59:54 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2023-03-30 20:03:07 +0000 |
commit | 4e128d974385d390c85e2a73f448fbe598196d65 (patch) | |
tree | a8ec9badee0f430697168e3ce72e41066c4a0a0d /sonar-ws | |
parent | d68d70ceca6263a649d597eb21f6d5a0ad873f94 (diff) | |
download | sonarqube-4e128d974385d390c85e2a73f448fbe598196d65.tar.gz sonarqube-4e128d974385d390c85e2a73f448fbe598196d65.zip |
SONAR-18746 Drop periodIndex field related to periods
Diffstat (limited to 'sonar-ws')
-rw-r--r-- | sonar-ws/src/main/protobuf/ws-qualitygates.proto | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-qualitygates.proto b/sonar-ws/src/main/protobuf/ws-qualitygates.proto index 8c9d4fbf962..06dfa914fc1 100644 --- a/sonar-ws/src/main/protobuf/ws-qualitygates.proto +++ b/sonar-ws/src/main/protobuf/ws-qualitygates.proto @@ -43,7 +43,7 @@ message ProjectStatusResponse { optional Status status = 1; optional string metricKey = 2; optional Comparator comparator = 3; - optional int32 periodIndex = 4; + reserved 4; //drop periodIndex optional string warningThreshold = 5; optional string errorThreshold = 6; optional string actualValue = 7; |