From a09e999c8a89215b7c0d59bffc4fac1cfbc219e6 Mon Sep 17 00:00:00 2001 From: xshadowlegendx Date: Wed, 24 Jul 2024 00:25:45 +0700 Subject: [PATCH] remove http version required --- postgres-appliance/scripts/spilo_commons.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/postgres-appliance/scripts/spilo_commons.py b/postgres-appliance/scripts/spilo_commons.py index 1266ff615..d80a4dae9 100644 --- a/postgres-appliance/scripts/spilo_commons.py +++ b/postgres-appliance/scripts/spilo_commons.py @@ -15,8 +15,7 @@ 'timescaledb': (9.6, 16, True, True), 'pg_cron': (9.5, 16, True, False), 'pg_stat_kcache': (9.4, 16, True, False), - 'pg_partman': (9.4, 16, False, True), - 'http': (9.4, 16, False, False) + 'pg_partman': (9.4, 16, False, True) } if os.environ.get('ENABLE_PG_MON') == 'true': extensions['pg_mon'] = (11, 16, True, False)