Github user d2r commented on a diff in the pull request:

    https://github.com/apache/storm/pull/576#discussion_r31825223
  
    --- Diff: bin/storm.py ---
    @@ -304,6 +304,19 @@ def rebalance(*args):
             jvmtype="-client",
             extrajars=[USER_CONF_DIR, STORM_BIN_DIR])
     
    +def get_errors(*args):
    +    """Syntax: [storm get-errors topology-name]
    +
    +    Get the latest error from the running topology. The returned result 
contains
    +    the key value pairs for component-name and component-error for the 
components in error.
    +    The result is returned in json format.
    +    """
    +    exec_storm_class(
    +        "backtype.storm.command.get_errors",
    +        args=args,
    +        jvmtype="-client",
    +        extrajars=[USER_CONF_DIR, STORM_DIR + "/bin"])
    --- End diff --
    
    Let's use `os.path.join(STORM_DIR, "bin")` here.


---
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.
---

Reply via email to