diff options
author | Michal Duda <michal.duda@sonarsource.com> | 2021-02-24 13:36:16 +0100 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2021-02-26 20:07:40 +0000 |
commit | 8b2bba6fe647c1d4aac15f7b4bdb7f469c7c9a9d (patch) | |
tree | 5a6603fdac70adf5c65e9db2d43289ef3904cce0 /sonar-ws | |
parent | 400fc247736923b25a3b25a86a306aa2dd97e9f7 (diff) | |
download | sonarqube-8b2bba6fe647c1d4aac15f7b4bdb7f469c7c9a9d.tar.gz sonarqube-8b2bba6fe647c1d4aac15f7b4bdb7f469c7c9a9d.zip |
SONAR-13848 remove deprecated response field 'debtTotal' from api/issues/search
Diffstat (limited to 'sonar-ws')
-rw-r--r-- | sonar-ws/src/main/protobuf/ws-issues.proto | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-issues.proto b/sonar-ws/src/main/protobuf/ws-issues.proto index 13a5436b177..6c5f4ba193f 100644 --- a/sonar-ws/src/main/protobuf/ws-issues.proto +++ b/sonar-ws/src/main/protobuf/ws-issues.proto @@ -28,6 +28,7 @@ option optimize_for = SPEED; // Response of GET api/issues/search message SearchWsResponse { + reserved 5; optional int64 total = 1; optional int64 p = 2; optional int32 ps = 3; @@ -35,8 +36,6 @@ message SearchWsResponse { // Total amount of effort, only when the facet "total" is enabled optional int64 effortTotal = 13; - // Deprecated since 5.5, replaced by effortTotal - optional int64 debtTotal = 5; repeated Issue issues = 6; repeated Component components = 7; |