Skip to content

Commit 017c2c1

Browse files
committed
Fix 'dtm.arbiters' field in pg_dtm daemons script.
1 parent ccce974 commit 017c2c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contrib/pg_dtm/tests/daemons.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ func postgres(bin string, datadir string, arbiters []string, port int, nodeid in
119119
"-p", strconv.Itoa(port),
120120
"-c", "dtm.buffer_size=65536",
121121
// "-c", "dtm.buffer_size=0",
122-
"-c", "dtm.servers=" + strings.Join(arbiters, ","),
122+
"-c", "dtm.arbiters=" + strings.Join(arbiters, ","),
123123
"-c", "autovacuum=off",
124124
"-c", "fsync=off",
125125
"-c", "synchronous_commit=on",

0 commit comments

Comments
 (0)