This commit is contained in:
Thomas FORGIONE 2015-10-05 10:20:17 +02:00
parent b5aa62cb93
commit 9117299eb2
1 changed files with 5 additions and 0 deletions

View File

@ -1029,6 +1029,10 @@ DBReq.LastExpGetter = function(userId, finishAction) {
this.finishAction = finishAction;
this.finalResult = {};
if (this.userId === undefined) {
return;
}
pg.connect(pgc.url, function(err, client, release) {
self.client = client;
self.release = release;
@ -1063,6 +1067,7 @@ DBReq.LastExpGetter.prototype.execute = function() {
if (err !== null) {
Log.dberror(err + ' in LastExpGetter (DBReq)');
}
if (result.rows.length === 0) {
Log.debug('Timeout', true);
setTimeout(function() {