You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ignite.apache.org by "Alexander Kalinin (JIRA)" <ji...@apache.org> on 2018/12/05 09:09:00 UTC

[jira] [Created] (IGNITE-10536) Incorrect hanlding of error in agent manager

Alexander Kalinin created IGNITE-10536:
------------------------------------------

             Summary: Incorrect hanlding of error in agent manager
                 Key: IGNITE-10536
                 URL: https://issues.apache.org/jira/browse/IGNITE-10536
             Project: Ignite
          Issue Type: Bug
            Reporter: Alexander Kalinin
            Assignee: Alexander Kalinin


in _executeOnCluster method in AgentManager servce we have such a code:
{code:java}
...

.catch((err) => {
  if (err instanceof CancellationError) 
    return;

  return err;
});

...
{code}
So we return an err. But should throw.

 



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)