File tree 1 file changed +8
-4
lines changed
dolphinscheduler-standalone-server/src/main/java/org/apache/dolphinscheduler/server
1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -59,20 +59,24 @@ public static void main(String[] args) throws Exception {
59
59
60
60
startRegistry ();
61
61
62
- // startAlertServer();
63
-
64
62
new SpringApplicationBuilder (
65
63
ApiApplicationServer .class ,
66
64
MasterServer .class ,
67
- WorkerServer .class ,
68
- LoggerServer .class
65
+ WorkerServer .class
69
66
).run (args );
67
+
68
+ startLoggerServer ();
69
+ startAlertServer ();
70
70
}
71
71
72
72
private static void startAlertServer () {
73
73
AlertServer .getInstance ().start ();
74
74
}
75
75
76
+ private static void startLoggerServer (){
77
+ new LoggerServer ().start ();
78
+ }
79
+
76
80
private static void startRegistry () throws Exception {
77
81
final TestingServer server = new TestingServer (true );
78
82
System .setProperty ("zookeeper.quorum" , server .getConnectString ());
You can’t perform that action at this time.
0 commit comments