diff options
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; } } |