Skip to content

Commit b7ec820

Browse files
committed
Fix description of WAL record XLOG_PARAMETER_CHANGE
max_wal_senders and max_worker_processes got reversed in the output generated because of ea92368. Reported-by: Kevin Hale Boyes Discussion: https://postgr.es/m/CADAecHVAD4=26KAx4nj5DBvxqqvJkuwsy+riiiNhQqwnZg2K8Q@mail.gmail.com
1 parent b07c695 commit b7ec820

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backend/access/rmgrdesc/xlogdesc.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,8 @@ xlog_desc(StringInfo buf, XLogReaderState *record)
114114
"max_locks_per_xact=%d wal_level=%s "
115115
"wal_log_hints=%s track_commit_timestamp=%s",
116116
xlrec.MaxConnections,
117-
xlrec.max_wal_senders,
118117
xlrec.max_worker_processes,
118+
xlrec.max_wal_senders,
119119
xlrec.max_prepared_xacts,
120120
xlrec.max_locks_per_xact,
121121
wal_level_str,

0 commit comments

Comments
 (0)