From 4ad241a3c3cdb1b740f09cfb71c5ff62f88a52da Mon Sep 17 00:00:00 2001 From: Jacek Date: Tue, 8 Dec 2020 17:02:46 +0100 Subject: SONAR-13999 drop organization from CE WS --- sonar-ws/src/main/protobuf/ws-ce.proto | 26 ++++++++++++-------------- 1 file changed, 12 insertions(+), 14 deletions(-) (limited to 'sonar-ws') diff --git a/sonar-ws/src/main/protobuf/ws-ce.proto b/sonar-ws/src/main/protobuf/ws-ce.proto index 2c083fbbec6..cd16545ae8b 100644 --- a/sonar-ws/src/main/protobuf/ws-ce.proto +++ b/sonar-ws/src/main/protobuf/ws-ce.proto @@ -64,12 +64,11 @@ message AnalysisStatusWsResponse { optional Component component = 1; message Component { - optional string organization = 1; - optional string key = 2; - optional string name = 3; - repeated Warning warnings = 4; - optional string branch = 5; - optional string pullRequest = 6; + optional string key = 1; + optional string name = 2; + repeated Warning warnings = 3; + optional string branch = 4; + optional string pullRequest = 5; } message Warning { @@ -127,14 +126,13 @@ message Task { optional string errorStacktrace = 17; optional string scannerContext = 18; optional bool hasScannerContext = 19; - optional string organization = 20; - optional string branch = 21; - optional sonarqube.ws.commons.BranchType branchType = 22; - optional string errorType = 23; - optional string pullRequest = 24; - optional string pullRequestTitle = 25; - optional int32 warningCount = 26; - repeated string warnings = 27; + optional string branch = 20; + optional sonarqube.ws.commons.BranchType branchType = 21; + optional string errorType = 22; + optional string pullRequest = 23; + optional string pullRequestTitle = 24; + optional int32 warningCount = 25; + repeated string warnings = 26; } enum TaskStatus { -- cgit v1.2.3