You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by ke...@apache.org on 2022/09/07 07:05:26 UTC

[dolphinscheduler] branch dev updated: Remove `not use web service` comment in alert server (#11819)

This is an automated email from the ASF dual-hosted git repository.

kezhenxu94 pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git


The following commit(s) were added to refs/heads/dev by this push:
     new ea0b5acccb Remove `not use web service` comment in alert server (#11819)
ea0b5acccb is described below

commit ea0b5acccb07474b5c4f0a08eecaa06c55f24d9e
Author: Wenjun Ruan <we...@apache.org>
AuthorDate: Wed Sep 7 15:05:18 2022 +0800

    Remove `not use web service` comment in alert server (#11819)
---
 .../src/main/java/org/apache/dolphinscheduler/alert/AlertServer.java | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/dolphinscheduler-alert/dolphinscheduler-alert-server/src/main/java/org/apache/dolphinscheduler/alert/AlertServer.java b/dolphinscheduler-alert/dolphinscheduler-alert-server/src/main/java/org/apache/dolphinscheduler/alert/AlertServer.java
index 7c5c2288ba..8f27dcb3e4 100644
--- a/dolphinscheduler-alert/dolphinscheduler-alert-server/src/main/java/org/apache/dolphinscheduler/alert/AlertServer.java
+++ b/dolphinscheduler-alert/dolphinscheduler-alert-server/src/main/java/org/apache/dolphinscheduler/alert/AlertServer.java
@@ -59,11 +59,6 @@ public class AlertServer implements Closeable {
         this.alertConfig = alertConfig;
     }
 
-    /**
-     * alert server startup, not use web service
-     *
-     * @param args arguments
-     */
     public static void main(String[] args) {
         Thread.currentThread().setName(Constants.THREAD_NAME_ALERT_SERVER);
         new SpringApplicationBuilder(AlertServer.class).run(args);