minor cleanup, throw on previously unchecked error
This commit is contained in:
parent
d5a622444e
commit
75f538fa16
|
@ -306,8 +306,8 @@ var RC;
|
|||
|
||||
function parseConfig(err, text) {
|
||||
function handleConfig(err, config) {
|
||||
//console.log('CONFIG');
|
||||
//console.log(config);
|
||||
if (err) { throw err; }
|
||||
|
||||
state.config = config;
|
||||
var verstrd = [ pkg.name + ' daemon v' + state.config.version ];
|
||||
if (state.config.version && state.config.version !== pkg.version) {
|
||||
|
@ -652,7 +652,7 @@ function parseConfig(err, text) {
|
|||
});
|
||||
}
|
||||
|
||||
RC.request({ service: 'config', method: 'GET' }, handleRemoteRequest('config', handleConfig));
|
||||
RC.request({ service: 'config', method: 'GET' }, handleConfig);
|
||||
}
|
||||
|
||||
var parsers = {
|
||||
|
|
|
@ -44,11 +44,14 @@ module.exports.create = function (state) {
|
|||
err.code = "E_REQUEST";
|
||||
}
|
||||
|
||||
if (body) {
|
||||
try {
|
||||
body = JSON.parse(body);
|
||||
} catch(e) {
|
||||
console.error('Error:', err);
|
||||
// ignore
|
||||
}
|
||||
}
|
||||
|
||||
fn(err, body);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue