Github user paul-guo- commented on a diff in the pull request:
https://github.com/apache/incubator-hawq/pull/1078#discussion_r95515076
--- Diff: src/backend/utils/misc/guc.c ---
@@ -8200,7 +8200,7 @@ static struct config_string ConfigureNamesString[] =
NULL
},
&standby_addr_host,
- "localhost", NULL, NULL
+ "none", NULL, NULL
--- End diff --
I suspect this does not affect your code.
See the code below,
def get_all_values(self):
if 'hawq_standby_address_host' in self.hawq_dict:
if self.hawq_dict['hawq_standby_address_host'].lower() in
['none', '', 'localhost']:
del self.hawq_dict['hawq_standby_address_host']
However hawq_ctl should remove the "none" case, I think.
@radarwave Please confirm the logic.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---