Skip to content

Commit

Permalink
Fix a var reference in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
onurctirtir committed Sep 18, 2023
1 parent b31cd17 commit 783d329
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fabfile/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ def build_postgres(c):
# Apply the patch that helps reporting the queries that cause memory errors under valgrind
# if Postgres version is older than 16. This is because, the relevant patch has already been
# merged into Postgres in 16.
if PG_VERSION.split(".")[0] < "16":
if config.PG_VERSION.split(".")[0] < "16":
patch_path = os.path.join(config.HOME_DIR, "test-automation/fabfile/pg_report_vg_query.patch")
c.run('git apply {}'.format(patch_path))

Expand Down

0 comments on commit 783d329

Please sign in to comment.