diff options
author | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2017-10-18 12:38:17 +0200 |
---|---|---|
committer | Grégoire Aubert <gregoire.aubert@sonarsource.com> | 2017-10-23 08:01:13 -0700 |
commit | 3550df8f4e9c5293e99463b65b921c5d1edda06e (patch) | |
tree | fea33a72175abb25301b18f61d8949481c3aa7b8 /sonar-ws/src | |
parent | e8475ad355de1e007ad08a795f31edd0dc8c7271 (diff) | |
download | sonarqube-3550df8f4e9c5293e99463b65b921c5d1edda06e.tar.gz sonarqube-3550df8f4e9c5293e99463b65b921c5d1edda06e.zip |
SONAR-10002 remove unused status AUTOMATIC_FAILED
Diffstat (limited to 'sonar-ws/src')
-rw-r--r-- | sonar-ws/src/main/protobuf/ws-editions.proto | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-editions.proto b/sonar-ws/src/main/protobuf/ws-editions.proto index 2c72180bacd..32503be4361 100644 --- a/sonar-ws/src/main/protobuf/ws-editions.proto +++ b/sonar-ws/src/main/protobuf/ws-editions.proto @@ -36,9 +36,8 @@ enum InstallationStatus { NONE = 0; AUTOMATIC_IN_PROGRESS = 1; AUTOMATIC_READY = 2; - AUTOMATIC_FAILED = 3; - MANUAL_IN_PROGRESS = 4; - UNINSTALL_IN_PROGRESS = 5; + MANUAL_IN_PROGRESS = 3; + UNINSTALL_IN_PROGRESS = 4; } // POST api/editions/preview |