diff --git a/src/utils/connectors/postgres.py b/src/utils/connectors/postgres.py index dcf602a3..6dc0ae28 100644 --- a/src/utils/connectors/postgres.py +++ b/src/utils/connectors/postgres.py @@ -1077,7 +1077,9 @@ def set_default_values(configs: 'DynamicConfig', config_type: ConfigType): fetch_cmd = """ SELECT 1 FROM config_history WHERE config_type = %s LIMIT 1; """ - data = self.execute_fetch_command(fetch_cmd, (config_type.value.lower(),)) + data = self.execute_fetch_command(fetch_cmd, + (config_type.value.lower(),), + return_raw=True) if data: continue