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