Github user revans2 commented on a diff in the pull request:
https://github.com/apache/storm/pull/516#discussion_r28283336
--- Diff: bin/storm.py ---
@@ -85,6 +85,10 @@ def init_storm_env():
JAR_JVM_OPTS = shlex.split(os.getenv('STORM_JAR_JVM_OPTS', ''))
JAVA_HOME = os.getenv('JAVA_HOME', None)
JAVA_CMD = 'java' if not JAVA_HOME else os.path.join(JAVA_HOME, 'bin',
'java')
+NIMBUS_EXTRA_CLASSPATHS = os.getenv('NIMBUS_EXTRA_CLASSPATHS', None)
+SUPERVISOR_EXTRA_CLASSPATHS = os.getenv('SUPERVISOR_EXTRA_CLASSPATHS',
None)
--- End diff --
I don't see a reason to have NIMBUS and SUPERVISOR specific class paths
options. If you have a good use case, please let me know otherwise I would
like to see them removed.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---