Skip to content

Commit

Permalink
Correct schema update message, per Richard Yen.
Browse files Browse the repository at this point in the history
  • Loading branch information
dpage committed Sep 14, 2021
1 parent 6df18a9 commit 40cfda9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pgAgent.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ void MainLoop()
if (!hasSchemaVerFunc)
{
LogMessage(
"Couldn't find the function 'pgagent_schema_version' - please run pgagent_upgrade.sql.",
"Couldn't find the function 'pgagent_schema_version' - please run ALTER EXTENSION \"pgagent\" UPDATE;.",
LOG_ERROR
);
}
Expand All @@ -214,7 +214,7 @@ void MainLoop()
LogMessage(
"Unsupported schema version: " + strPgAgentSchemaVer +
". Version " + currentPgAgentVersion +
" is required - please run pgagent_upgrade.sql.",
" is required - please run ALTER EXTENSION \"pgagent\" UPDATE;.",
LOG_ERROR
);
}
Expand Down

0 comments on commit 40cfda9

Please sign in to comment.