Slack messaging #169

Merged
bones7242 merged 11 commits from slack-messaging into master 2017-09-21 21:11:32 +02:00
2 changed files with 4 additions and 7 deletions
Showing only changes of commit 456c2dc831 - Show all commits

View file

@ -3,23 +3,20 @@ const { postToStats } = require('../controllers/statsController.js');
module.exports = {
handleRequestError (action, originalUrl, ip, error, res) {
logger.error('Request Error:', error);
logger.error('Request Error:', error.message);
postToStats(action, originalUrl, ip, null, null, error);
kauffj commented 2017-09-16 00:18:31 +02:00 (Migrated from github.com)
Review

When is there a non-enumerable property being passed that this is required?

When is there a non-enumerable property being passed that this is required?
bones7242 commented 2017-09-21 21:10:37 +02:00 (Migrated from github.com)
Review

for errors created by node (e.g. new Error('error message')) the stack and message are non-enumerable

for errors created by node (e.g. `new Error('error message')`) the stack and message are non-enumerable
if (error.response) {
postToStats(action, originalUrl, ip, null, null, error.response.data.error.messsage);
res.status(error.response.status).send(error.response.data.error.message);
} else if (error.code === 'ECONNREFUSED') {
postToStats(action, originalUrl, ip, null, null, 'Connection refused. The daemon may not be running.');
res.status(503).send('Connection refused. The daemon may not be running.');
} else if (error.message) {
postToStats(action, originalUrl, ip, null, null, error);
res.status(400).send(error.message);
} else {
postToStats(action, originalUrl, ip, null, null, error);
res.status(400).send(error);
}
},
handlePublishError (error) {
logger.error('Publish Error:', error);
logger.error('Publish Error:', error.message);
if (error.code === 'ECONNREFUSED') {
return 'Connection refused. The daemon may not be running.';
} else if (error.response.data.error) {

View file

@ -115,7 +115,7 @@ module.exports = {
}
})
.catch(error => {
logger.error('Lbrynet Error:', error);
logger.error('Lbrynet Error:', error.message);
resolve('/home/lbry/Downloads/');
});
});