diff --git a/gpMgmt/bin/gpconfig b/gpMgmt/bin/gpconfig index 208373ebd01c6d99c9cf320745c7191272415a76..15b98c766a5b758761c3f728661ece30a810f251 100755 --- a/gpMgmt/bin/gpconfig +++ b/gpMgmt/bin/gpconfig @@ -141,14 +141,14 @@ class Guc: return "invalid value for max_connections" elif self.name == "gp_resource_manager": - if newval == "group": + if newval == "'group'": LOGGER.warn("Managing queries with resource groups is an " "experimental feature. A work-in-progress version is " "enabled.") msg = GpResGroup().validate() if msg is not None: return msg - elif newval != "queue": + elif newval != "'queue'": return "the value of gp_resource_manager must be 'group' or 'queue'" elif self.name == 'unix_socket_permissions':