mirror of
https://github.com/EnterpriseDB/repmgr.git
synced 2026-03-22 22:56:29 +00:00
Various minor fixes
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@@ -39,5 +39,7 @@ lib*.pc
|
||||
/.lineno
|
||||
*.dSYM
|
||||
# generated binaries
|
||||
repmgr
|
||||
repmgrd
|
||||
repmgr4
|
||||
repmgrd4
|
||||
|
||||
@@ -410,8 +410,8 @@ do_standby_clone(void)
|
||||
RecordStatus record_status;
|
||||
|
||||
record_status = get_node_record(primary_conn,
|
||||
config_file_options.node_id,
|
||||
&node_record);
|
||||
config_file_options.node_id,
|
||||
&node_record);
|
||||
|
||||
if (record_status == RECORD_FOUND)
|
||||
{
|
||||
@@ -660,9 +660,9 @@ do_standby_register(void)
|
||||
|
||||
/* Check if node record exists */
|
||||
|
||||
record_status= get_node_record(primary_conn,
|
||||
config_file_options.node_id,
|
||||
&node_record);
|
||||
record_status = get_node_record(primary_conn,
|
||||
config_file_options.node_id,
|
||||
&node_record);
|
||||
|
||||
if (record_status == RECORD_FOUND && !runtime_options.force)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user