diff options
author | Jacek <jacek.poreda@sonarsource.com> | 2022-12-14 11:29:10 +0100 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2022-12-15 20:03:33 +0000 |
commit | b4a6a0f82888fe26724a01439cfb279bbf08d589 (patch) | |
tree | 87a553f26daaf72d56a770b3c4acabbadb10d1f6 /sonar-ws | |
parent | a48504427c0907284ce4010574d673f7aeac0e4a (diff) | |
download | sonarqube-b4a6a0f82888fe26724a01439cfb279bbf08d589.tar.gz sonarqube-b4a6a0f82888fe26724a01439cfb279bbf08d589.zip |
SONAR-13799 Drop deprecated measures counters from `api/project_pull_requests/list`
Diffstat (limited to 'sonar-ws')
-rw-r--r-- | sonar-ws/src/main/protobuf/ws-projectpullrequests.proto | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-projectpullrequests.proto b/sonar-ws/src/main/protobuf/ws-projectpullrequests.proto index cad1acf8e58..bf0d871ae81 100644 --- a/sonar-ws/src/main/protobuf/ws-projectpullrequests.proto +++ b/sonar-ws/src/main/protobuf/ws-projectpullrequests.proto @@ -45,7 +45,7 @@ message PullRequest { message Status { optional string qualityGateStatus = 1; - optional int64 bugs = 2; - optional int64 vulnerabilities = 3; - optional int64 codeSmells = 4; + reserved 2; // drop bugs field + reserved 3; // drop vulnerabilities field + reserved 4; // drop codeSmells field } |