Github user HeartSaVioR commented on a diff in the pull request:
https://github.com/apache/storm/pull/2752#discussion_r204258951
--- Diff: storm-client/src/jvm/org/apache/storm/Constants.java ---
@@ -55,5 +55,7 @@
public static final String COMMON_ONHEAP_MEMORY_RESOURCE_NAME =
"onheap.memory.mb";
public static final String COMMON_OFFHEAP_MEMORY_RESOURCE_NAME =
"offheap.memory.mb";
public static final String COMMON_TOTAL_MEMORY_RESOURCE_NAME =
"memory.mb";
+
+ public static final String STORM_API_URL_PREFIX = "/api/v1/";
--- End diff --
I can only see the usage from UIServer (storm-core, ideally needs to be
moved to webserver module), and I'm not sure client side needs to know about
this.
---