diff options
author | Michal Duda <michal.duda@sonarsource.com> | 2021-02-24 11:03:11 +0100 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2021-02-26 20:07:40 +0000 |
commit | d6a17a778de357348e3e88771d79e0fa42a5369b (patch) | |
tree | d1f6ccce42e71062f6c8fdb5d2f14e9bd260ee82 /sonar-ws | |
parent | b5c9fcb1cb02a7f574f74277c6491fcbfbdc9c8d (diff) | |
download | sonarqube-d6a17a778de357348e3e88771d79e0fa42a5369b.tar.gz sonarqube-d6a17a778de357348e3e88771d79e0fa42a5369b.zip |
SONAR-13848 remove deprecations from api/ce/component
Diffstat (limited to 'sonar-ws')
-rw-r--r-- | sonar-ws/src/main/protobuf/ws-ce.proto | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-ce.proto b/sonar-ws/src/main/protobuf/ws-ce.proto index 053c1182ac6..8eefda48532 100644 --- a/sonar-ws/src/main/protobuf/ws-ce.proto +++ b/sonar-ws/src/main/protobuf/ws-ce.proto @@ -108,7 +108,7 @@ message WorkerCountResponse { } message Task { - reserved 20; //drop organization + reserved 15,20; //drop organizations, drop 'logs' optional string id = 1; optional string type = 2; optional string componentId = 3; @@ -123,7 +123,6 @@ message Task { optional string executedAt = 12; optional bool isLastExecuted = 13; optional int64 executionTimeMs = 14; - optional bool logs = 15; optional string errorMessage = 16; optional string errorStacktrace = 17; optional string scannerContext = 18; |