diff options
author | Eric Giffon <eric.giffon@sonarsource.com> | 2023-07-12 11:13:14 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2023-07-19 20:03:05 +0000 |
commit | 21fb2157a48f119775a5fd6c573101f7c0b67939 (patch) | |
tree | c5a5fb0fd269706f181dd7a3e02602c1b582ffc6 /sonar-ws | |
parent | 4bd314ed8127bed0795021dbd01a5ca9c6dc0b45 (diff) | |
download | sonarqube-21fb2157a48f119775a5fd6c573101f7c0b67939.tar.gz sonarqube-21fb2157a48f119775a5fd6c573101f7c0b67939.zip |
SONAR-19728 Update ws indexation_status to return project count instead of branch percentage
Diffstat (limited to 'sonar-ws')
-rw-r--r-- | sonar-ws/src/main/protobuf/ws-ce.proto | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-ce.proto b/sonar-ws/src/main/protobuf/ws-ce.proto index c094aca171c..3c19f02a691 100644 --- a/sonar-ws/src/main/protobuf/ws-ce.proto +++ b/sonar-ws/src/main/protobuf/ws-ce.proto @@ -55,8 +55,9 @@ message ActivityStatusWsResponse { // GET api/ce/indexation_status message IndexationStatusWsResponse { optional bool isCompleted = 1; - optional int32 percentCompleted = 2; - optional bool hasFailures = 3; + optional bool hasFailures = 2; + optional int32 completedCount = 3; + optional int32 total = 4; } // GET api/ce/analysis_status |