diff options
author | Matteo Mara <matteo.mara@sonarsource.com> | 2024-08-20 16:48:13 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2024-08-22 20:02:57 +0000 |
commit | 52f852bcba57febc5f49e0c51dcc0ccbb100aa02 (patch) | |
tree | 60d30a5158bd4466e21978875f33b3ba372c5fb5 /sonar-ws | |
parent | 5d06156e16cd6b0242072ca5e932854baa7c3c78 (diff) | |
download | sonarqube-52f852bcba57febc5f49e0c51dcc0ccbb100aa02.tar.gz sonarqube-52f852bcba57febc5f49e0c51dcc0ccbb100aa02.zip |
SONAR-20277 deprecate parameter ceTaskId and componentKey, and response field ceTaskId in api/webhooks/deliveries
Diffstat (limited to 'sonar-ws')
-rw-r--r-- | sonar-ws/src/main/protobuf/ws-webhooks.proto | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-webhooks.proto b/sonar-ws/src/main/protobuf/ws-webhooks.proto index 256ef05d2a7..d84e99da94e 100644 --- a/sonar-ws/src/main/protobuf/ws-webhooks.proto +++ b/sonar-ws/src/main/protobuf/ws-webhooks.proto @@ -78,7 +78,7 @@ message DeliveryWsResponse { message Delivery { optional string id = 1; optional string componentKey = 2; - optional string ceTaskId = 3; + optional string ceTaskId = 3 [deprecated=true]; optional string name = 4; optional string url = 5; optional string at = 6; |