You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What is your connection string (no user/passwords please!) JsonObject dbSettings = new JsonObject() .put("url", "jdbc:postgresql://" + System.getProperty("db.host") + ":5432/" + System.getProperty("db.database") + "?currentSchema=" + System.getProperty("db.schema", "public")) .put("user", System.getProperty("db.user")) .put("password", System.getProperty("db.password"));
Context
Application is started and connected to DB. Queries are preformed as expected.
Postgres instance is restarted.
First query request after restarts results in error:
FATAL: terminating connection due to administrator command
Next query works normal. Only first one after restarts fails.
The text was updated successfully, but these errors were encountered:
Version
General info
JsonObject dbSettings = new JsonObject() .put("url", "jdbc:postgresql://" + System.getProperty("db.host") + ":5432/" + System.getProperty("db.database") + "?currentSchema=" + System.getProperty("db.schema", "public")) .put("user", System.getProperty("db.user")) .put("password", System.getProperty("db.password"));
Context
Application is started and connected to DB. Queries are preformed as expected.
Postgres instance is restarted.
First query request after restarts results in error:
Next query works normal. Only first one after restarts fails.
The text was updated successfully, but these errors were encountered: