imbajin commented on code in PR #2278:
URL: 
https://github.com/apache/incubator-hugegraph/pull/2278#discussion_r1328198655


##########
hugegraph-api/src/main/java/org/apache/hugegraph/config/ServerOptions.java:
##########
@@ -264,4 +264,36 @@ public static synchronized ServerOptions instance() {
                     disallowEmpty(),
                     true
             );
+
+    public static final ConfigOption<String> ARTHAS_TELNET_PORT =
+        new ConfigOption<>(
+            "arthas.telnet_port",
+            "The telnet port provided by Arthas, it can be accessible from the 
outside.",
+            disallowEmpty(),
+            "8562"
+        );
+
+    public static final ConfigOption<String> ARTHAS_HTTP_PORT =
+        new ConfigOption<>(
+            "arthas.http_port",
+            "The HTTP port provided by Arthas, it can be accessible from the 
outside.",
+            disallowEmpty(),
+            "8561"
+        );
+
+    public static final ConfigOption<String> ARTHAS_IP =
+        new ConfigOption<>(
+            "arthas.ip",
+            "The IP provided by Arthas, it can be accessible from the 
outside.",
+            disallowEmpty(),
+            "0.0.0.0"
+        );
+
+    public static final ConfigOption<String> ARTHAS_DISABLED_COMMANDS =
+        new ConfigOption<>(
+            "arthas.disabled_commands",
+            "The disabled Arthas commands due to high risk.",
+            null,
+            "jad"
+        );
 }

Review Comment:
   lack empty line in the end of file



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to