Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
a3382de9
Commit
a3382de9
authored
Dec 12, 2007
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Provide a more accurate, detailed log message when the archive command fails.
parent
8db9ba18
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
29 additions
and
5 deletions
+29
-5
src/backend/postmaster/pgarch.c
src/backend/postmaster/pgarch.c
+29
-5
No files found.
src/backend/postmaster/pgarch.c
View file @
a3382de9
...
...
@@ -19,7 +19,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/postmaster/pgarch.c,v 1.3
3 2007/11/24 21:37:04 tgl
Exp $
* $PostgreSQL: pgsql/src/backend/postmaster/pgarch.c,v 1.3
4 2007/12/12 09:39:54 petere
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -484,11 +484,35 @@ pgarch_archiveXlog(char *xlog)
* Per the Single Unix Spec, shells report exit status > 128 when a
* called command died on a signal.
*/
bool
signaled
=
WIFSIGNALED
(
rc
)
||
WEXITSTATUS
(
rc
)
>
128
;
int
lev
=
(
WIFSIGNALED
(
rc
)
||
WEXITSTATUS
(
rc
)
>
128
)
?
FATAL
:
LOG
;
ereport
(
signaled
?
FATAL
:
LOG
,
(
errmsg
(
"archive command
\"
%s
\"
failed: return code %d"
,
xlogarchcmd
,
rc
)));
if
(
WIFEXITED
(
rc
))
{
ereport
(
lev
,
(
errmsg
(
"archive command failed with exit code %d"
,
WEXITSTATUS
(
rc
)),
errdetail
(
"The failed archive command was: %s"
,
xlogarchcmd
)));
}
else
if
(
WIFSIGNALED
(
rc
))
{
ereport
(
lev
,
(
#if defined(WIN32)
errmsg
(
"archive command was terminated by exception 0x%X"
,
WTERMSIG
(
rc
)),
errhint
(
"See C include file
\"
ntstatus.h
\"
for a description of the hexadecimal value."
),
#elif defined(HAVE_DECL_SYS_SIGLIST) && HAVE_DECL_SYS_SIGLIST
errmsg
(
"archive command was terminated by signal %d: %s"
,
WTERMSIG
(
rc
),
WTERMSIG
(
rc
)
<
NSIG
?
sys_siglist
[
WTERMSIG
(
rc
)]
:
"(unknown)"
),
#else
errmsg
(
"archive command was terminated by signal %d"
,
WTERMSIG
(
exitstatus
)),
#endif
errdetail
(
"The failed archive command was: %s"
,
xlogarchcmd
)));
}
else
{
ereport
(
lev
,
(
errmsg
(
"archive command exited with unrecognized status %d"
,
rc
),
errdetail
(
"The failed archive command was: %s"
,
xlogarchcmd
)));
}
return
false
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment