You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@storm.apache.org by "Mansheng Yang (JIRA)" <ji...@apache.org> on 2014/11/30 05:41:12 UTC

[jira] [Created] (STORM-578) Calls to submit-mocked-assignment in supervisor-test use invalid executor-id format

Mansheng Yang created STORM-578:
-----------------------------------

             Summary: Calls to submit-mocked-assignment in supervisor-test use invalid executor-id format
                 Key: STORM-578
                 URL: https://issues.apache.org/jira/browse/STORM-578
             Project: Apache Storm
          Issue Type: Bug
         Environment: Ubuntu 14.04
            Reporter: Mansheng Yang
            Assignee: Mansheng Yang
            Priority: Minor


Calls to submit-mocked-assignment in supervisor-test are using invalid executor-id format, e.g.:
{noformat}
{
[1] ["sup1" 1]
[2] ["sup1" 2] 
[3] ["sup2" 1] 
[4] ["sup2" 1]
}
{noformat}
Since executor ids should be of the form \[first-task last-task], the correct argument should be
{noformat}
{
[1 1] ["sup1" 1] 
[2 2] ["sup1" 2] 
[3 3] ["sup2" 1] 
[4 4] ["sup2" 1]
}
{noformat}

See https://github.com/apache/storm/pull/319



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)