You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: server/src/main/java/io/appulse/epmd/java/server/SubcommandServer.java
+51-34Lines changed: 51 additions & 34 deletions
Original file line number
Diff line number
Diff line change
@@ -83,6 +83,9 @@
83
83
importpicocli.CommandLine.Option;
84
84
importpicocli.CommandLine.ParentCommand;
85
85
86
+
/**
87
+
* EPMD server command.
88
+
*/
86
89
@Slf4j
87
90
@NoArgsConstructor
88
91
@Command(
@@ -128,7 +131,9 @@ public class SubcommandServer implements Runnable {
128
131
names = { "-u", "--unsafe-commands" },
129
132
description = {
130
133
"Start the epmd program with relaxed command checking. This affects the following:",
131
-
"With relaxed command checking, the epmd daemon can be killed from the localhost with i.e. epmd -kill even if there are active nodes registered. Normally only daemons with an empty node database can be killed with the epmd \"kill\" command.",
134
+
"With relaxed command checking, the epmd daemon can be killed from the localhost with i.e. " +
135
+
"epmd -kill even if there are active nodes registered. Normally only daemons with an empty node " +
136
+
"database can be killed with the epmd \"kill\" command.",
132
137
"With relaxed command checking enabled, you can forcibly unregister live nodes by \"stop\" command."
133
138
}
134
139
)
@@ -155,37 +160,6 @@ public class SubcommandServer implements Runnable {
0 commit comments