Skip to content

Commit

Permalink
[#21221] yugabyted: changing the pg parity flag to --enable_pg_parity…
Browse files Browse the repository at this point in the history
…_tech_preview.

Summary:
Changing the flag to enable pg parity gflags from --enable_pg_parity to --enable_pg_parity_tech_preivew
Jira: DB-10152

Test Plan: Manual Test

Reviewers: djiang

Reviewed By: djiang

Subscribers: yugabyted-dev

Differential Revision: https://phorge.dev.yugabyte.com/D33085
  • Loading branch information
nchandrappa committed Mar 12, 2024
1 parent 2193c9e commit 9450599
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bin/yugabyted
Original file line number Diff line number Diff line change
Expand Up @@ -6119,9 +6119,9 @@ class ControlScript(object):

self.configs.saved_data["ca_cert_file_path"] = os.path.join(args.certs_dir,
"ca.crt")
if args.enable_pg_parity:
if args.enable_pg_parity_tech_preview:
self.configs.temp_data["enable_pg_parity"] = \
args.enable_pg_parity
args.enable_pg_parity_tech_preview

args.background = self.parse_bool(args.background)
if args.ui is not None:
Expand Down Expand Up @@ -6577,7 +6577,7 @@ class ControlScript(object):
"--config", help="{} user configuration file path".format(
SCRIPT_NAME), metavar="")
cur_parser.add_argument(
"--enable_pg_parity", help="Enable PostgreSQL compatibility features."
"--enable_pg_parity_tech_preview", help="Enable PostgreSQL compatibility features."
" Default value is False.", action="store_true", default=False)

# Hidden commands for development/advanced users
Expand Down

0 comments on commit 9450599

Please sign in to comment.