Do not throw an Error embedding another Error
Should fix #68, but doesn't come with an automated test
This commit is contained in:
parent
7d34cbbd63
commit
6b71cde56e
@ -106,7 +106,7 @@ module.exports = function() {
|
|||||||
if (check_result === 1) {
|
if (check_result === 1) {
|
||||||
// authorized by key, login as db owner
|
// authorized by key, login as db owner
|
||||||
that.getId(req, function(err, user_id) {
|
that.getId(req, function(err, user_id) {
|
||||||
if (err) throw new Error(err);
|
if (err) throw err;
|
||||||
var dbuser = _.template(global.settings.postgres_auth_user, {user_id: user_id});
|
var dbuser = _.template(global.settings.postgres_auth_user, {user_id: user_id});
|
||||||
_.extend(req, {dbuser:dbuser});
|
_.extend(req, {dbuser:dbuser});
|
||||||
callback(err, true);
|
callback(err, true);
|
||||||
|
Loading…
Reference in New Issue
Block a user