From: Himpich, S. <Ste...@se...> - 2013-07-26 14:18:48
|
There is a "}" too many which causes the configs for datanodes to be wrong. Please include the following patch. Greetings, Stefan --- datanode_cmd.c.orig 2013-07-24 12:09:24.000000000 +0200 +++ datanode_cmd.c 2013-07-26 16:16:01.234469379 +0200 @@ -136,7 +136,7 @@ fprintf(f, "wal_level = hot_standby\n" "archive_mode = on\n" - "archive_command = 'rsync %%p %s@%s}:%s/%%f'\n" + "archive_command = 'rsync %%p %s@%s:%s/%%f'\n" "max_wal_senders = %s\n" "# End of Addition\n", sval(VAR_pgxcUser), aval(VAR_datanodeSlaveServers)[idx], aval(VAR_datanodeArchLogDirs)[idx], |