Prechádzať zdrojové kódy

Reword connection retry messages

Aanand Prasad 9 rokov pred
rodič
commit
0d5cd2bd99
1 zmenil súbory, kde vykonal 3 pridanie a 2 odobranie
  1. 3 2
      worker/src/main/java/worker/Worker.java

+ 3 - 2
worker/src/main/java/worker/Worker.java

@@ -53,7 +53,7 @@ class Worker {
         conn.keys("*");
         break;
       } catch (JedisConnectionException e) {
-        System.err.println("Failed to connect to redis - retrying");
+        System.err.println("Waiting for redis");
         sleep(1000);
       }
     }
@@ -74,7 +74,7 @@ class Worker {
         try {
           conn = DriverManager.getConnection(url, "postgres", "");
         } catch (SQLException e) {
-          System.err.println("Failed to connect to db - retrying");
+          System.err.println("Waiting for db");
           sleep(1000);
         }
       }
@@ -88,6 +88,7 @@ class Worker {
       System.exit(1);
     }
 
+    System.err.println("Connected to db");
     return conn;
   }