diff options
author | Jacek <jacek.poreda@sonarsource.com> | 2020-06-18 15:51:07 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2020-06-26 20:04:58 +0000 |
commit | dc2f7ec44a7b82709bf75eb81764a20912e3bbea (patch) | |
tree | a9ecf77f055c01e4b64a1f1bc7699cef8d9eec2d /sonar-ws | |
parent | b6dfe48e0221b5fb90d66e93f0063b47e20530ae (diff) | |
download | sonarqube-dc2f7ec44a7b82709bf75eb81764a20912e3bbea.tar.gz sonarqube-dc2f7ec44a7b82709bf75eb81764a20912e3bbea.zip |
SONAR-13444 Return hasFailure flag for indexation progress status
isCompleted is now based on task rather on project_branches
Diffstat (limited to 'sonar-ws')
-rw-r--r-- | sonar-ws/src/main/protobuf/ws-ce.proto | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-ce.proto b/sonar-ws/src/main/protobuf/ws-ce.proto index a387200b138..b7938c61d53 100644 --- a/sonar-ws/src/main/protobuf/ws-ce.proto +++ b/sonar-ws/src/main/protobuf/ws-ce.proto @@ -56,6 +56,7 @@ message ActivityStatusWsResponse { message IndexationStatusWsResponse { optional bool isCompleted = 1; optional int32 percentCompleted = 2; + optional bool hasFailures = 3; } // GET api/ce/analysis_status |