fix: misleading "Starting.." logs on scache reload

This commit is contained in:
steve-chavez
2024-01-09 20:37:25 -05:00
committed by Steve Chavez
parent 6c3d7a946d
commit fdaeea8fd2
3 changed files with 6 additions and 1 deletions
+2
View File
@@ -68,6 +68,8 @@ type Handler = ExceptT Error
run :: AppState -> IO ()
run appState = do
AppState.logWithZTime appState $ "Starting PostgREST " <> T.decodeUtf8 prettyVersion <> "..."
conf@AppConfig{..} <- AppState.getConfig appState
AppState.connectionWorker appState -- Loads the initial SchemaCache
Unix.installSignalHandlers (AppState.getMainThreadId appState) (AppState.connectionWorker appState) (AppState.reReadConfig False appState)
-1
View File
@@ -353,7 +353,6 @@ internalConnectionWorker appState = work
where
work = do
config@AppConfig{..} <- getConfig appState
logWithZTime appState $ "Starting PostgREST " <> T.decodeUtf8 prettyVersion <> "..."
logWithZTime appState "Attempting to connect to the database..."
connected <- establishConnection appState config
case connected of