You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ignite.apache.org by "Alexey Kuznetsov (JIRA)" <ji...@apache.org> on 2016/01/13 17:09:40 UTC

[jira] [Created] (IGNITE-2373) Revisit server side error handling logic

Alexey Kuznetsov created IGNITE-2373:
----------------------------------------

             Summary: Revisit server side error handling logic
                 Key: IGNITE-2373
                 URL: https://issues.apache.org/jira/browse/IGNITE-2373
             Project: Ignite
          Issue Type: Sub-task
          Components: wizards
    Affects Versions: 1.5
            Reporter: Alexey Kuznetsov
            Assignee: Andrey Novikov
             Fix For: 1.6


We have in /routes 14 times
{code}
send(err) 
{code}
and  27 times
{code}
 send(err.message)
{code}

It seems for me that we should always use send(err) 

And also I think we could introduce a couple of utility functions to reduce boilerplate code like this
{code}
        if (err)
            return res.status(500).send(err.message);
{code}



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