]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-19346-undeprecate-ce-task
authorPierre <pierre.guillot@sonarsource.com>
Wed, 14 Jun 2023 08:39:52 +0000 (10:39 +0200)
committersonartech <sonartech@sonarsource.com>
Wed, 14 Jun 2023 09:51:06 +0000 (09:51 +0000)
server/sonar-webserver-webapi/src/main/java/org/sonar/server/ce/ws/TaskAction.java

index f8b87d5e22f668d400e230e596d165621711514e..a6e20362242e0ebccebfcca9a79ef5de14aadbdd 100644 (file)
@@ -68,18 +68,15 @@ public class TaskAction implements CeWsAction {
   @Override
   public void define(WebService.NewController controller) {
     WebService.NewAction action = controller.createAction(ACTION)
-      .setDescription("<b>The endpoint is now deprecated; `/api/ce/activity` should be used instead.</b><br/><br/>"
-        + "Give Compute Engine task details such as type, status, duration and associated component.<br/>" +
+      .setDescription("Give Compute Engine task details such as type, status, duration and associated component.<br/>" +
         "Requires 'Administer System' or 'Execute Analysis' permission.<br/>" +
         "Since 6.1, field \"logs\" is deprecated and its value is always false.")
       .setResponseExample(getClass().getResource("task-example.json"))
       .setSince("5.2")
-      .setDeprecatedSince("10.1")
       .setChangelog(
         new Change("6.6", "fields \"branch\" and \"branchType\" added"),
         new Change("10.1", "Warnings field will be now always be filled (it is not necessary to mention it explicitly in 'additionalFields'). "
-          + "'additionalFields' value `warning' is deprecated."),
-        new Change("10.1", "The endpoint is now deprecated; `/api/ce/activity` should be used instead.")
+          + "'additionalFields' value `warning' is deprecated.")
       )
       .setHandler(this);