Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit a83f308

Browse files
committed
Fix NLS file reference in pg_createsubscriber
pg_createsubscriber is referring to a non-existent message translation file, causing NLS to not work correctly. This command should use the same file as pg_basebackup. Author: Kyotaro Horiguchi <horikyota.ntt@gmail.com> Discussion: https://postgr.es/m/20240802.115717.1083441453338151622.horikyota.ntt@gmail.com
1 parent 3b2f668 commit a83f308

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bin/pg_basebackup/pg_createsubscriber.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1904,7 +1904,7 @@ main(int argc, char **argv)
19041904
pg_logging_init(argv[0]);
19051905
pg_logging_set_level(PG_LOG_WARNING);
19061906
progname = get_progname(argv[0]);
1907-
set_pglocale_pgservice(argv[0], PG_TEXTDOMAIN("pg_createsubscriber"));
1907+
set_pglocale_pgservice(argv[0], PG_TEXTDOMAIN("pg_basebackup"));
19081908

19091909
if (argc > 1)
19101910
{

0 commit comments

Comments
 (0)