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)