Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit6b70030

Browse files
committed
Fix wrong merge resolution making pg_receivexlog fail in 9.2.
I bungled resolving a conflict while backpatching2c0a485 to 9.2, bypassing mark_done = true to ReceiveXlogStream in pg_receivexlog.c (allthe other branches are ok). Since pg_receivexlog doesn't use a archivedirectory that causes 'could not create archive status file "...": Nosuch file or directory' errors.Until 9.2.11 is released this can be worked around by creating'archive_directory' in pg_receivexlog's target directory.Found by Sergey Konoplev.
1 parent3913b89 commit6b70030

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎src/bin/pg_basebackup/pg_receivexlog.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ StreamLog(void)
321321
progname,startpos.xlogid,startpos.xrecoff,timeline);
322322

323323
ReceiveXlogStream(conn,startpos,timeline,NULL,basedir,
324-
stop_streaming,standby_message_timeout, false,true);
324+
stop_streaming,standby_message_timeout, false,false);
325325

326326
PQfinish(conn);
327327
}

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp