diff options
author | Julien Lancelot <julien.lancelot@sonarsource.com> | 2017-08-29 12:07:16 +0200 |
---|---|---|
committer | Janos Gyerik <janos.gyerik@sonarsource.com> | 2017-09-12 11:34:55 +0200 |
commit | 1c4aa4402efa3038b7c400b5ed3cac2ddcb83ff2 (patch) | |
tree | 2366e8e4b957c51f68d895e82914f1136ef7ce4e /sonar-ws | |
parent | 8e2eb6188bb66cd35642b8c21f5677887fa972f7 (diff) | |
download | sonarqube-1c4aa4402efa3038b7c400b5ed3cac2ddcb83ff2.tar.gz sonarqube-1c4aa4402efa3038b7c400b5ed3cac2ddcb83ff2.zip |
SONAR-9616 Use single ES query in api/project_branches/list
Diffstat (limited to 'sonar-ws')
-rw-r--r-- | sonar-ws/src/main/protobuf/ws-projectbranches.proto | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-projectbranches.proto b/sonar-ws/src/main/protobuf/ws-projectbranches.proto index a5c67745885..bfeb635b5ea 100644 --- a/sonar-ws/src/main/protobuf/ws-projectbranches.proto +++ b/sonar-ws/src/main/protobuf/ws-projectbranches.proto @@ -49,9 +49,9 @@ message Branch { // Quality gate status is only present for long living branch optional string qualityGateStatus = 1; // Merge bugs, vulnerabilities and codeSmell are only present for short living branch - optional int32 bugs = 2; - optional int32 vulnerabilities = 3; - optional int32 codeSmells = 4; + optional int64 bugs = 2; + optional int64 vulnerabilities = 3; + optional int64 codeSmells = 4; } } |