Github user shellbj commented on a diff in the pull request:
https://github.com/apache/storm/pull/715#discussion_r38932103
--- Diff: bin/storm.py ---
@@ -103,6 +103,12 @@ def get_config_opts():
sys.exit(1)
def get_jars_full(adir):
+ files = []
+ if os.path.isdir(adir):
+ files = os.listdir(adir)
+ elif os.path.exists(adir):
+ files = [aidr]
+
files = os.listdir(adir)
--- End diff --
Good catch; updated.
---
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.
---