Reword connection retry messages

This commit is contained in:
Aanand Prasad
2016-06-19 21:32:18 -07:00
parent 82fd54e28f
commit 036c119e2c
2 changed files with 7 additions and 4 deletions

View File

@ -26,7 +26,7 @@ async.retry(
function(callback) {
pg.connect('postgres://postgres@db/postgres', function(err, client, done) {
if (err) {
console.error("Failed to connect to db");
console.error("Waiting for db");
}
callback(err, client);
});