From 52eacd30c5da7edc44ceec3d4958d1fa795493a7 Mon Sep 17 00:00:00 2001 From: Alex Vandiver Date: Wed, 19 Jul 2023 00:26:34 +0000 Subject: [PATCH] wal-g: Set WALG_S3_PREFIX, instead of WALE_S3_PREFIX. The `WALE_` prefix was only used for backwards compatibility. Switch to the canonical variable name. --- puppet/zulip/files/postgresql/env-wal-g | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/puppet/zulip/files/postgresql/env-wal-g b/puppet/zulip/files/postgresql/env-wal-g index 3ceee2ce11..7667c8d6dc 100755 --- a/puppet/zulip/files/postgresql/env-wal-g +++ b/puppet/zulip/files/postgresql/env-wal-g @@ -21,5 +21,5 @@ if ! s3_backups_bucket=$(crudini --get "$ZULIP_SECRETS_CONF" secrets s3_backups_ echo "Could not determine which s3 bucket to use:" "$s3_backups_bucket" exit 1 fi -export WALE_S3_PREFIX="s3://$s3_backups_bucket" +export WALG_S3_PREFIX="s3://$s3_backups_bucket" exec /usr/local/bin/wal-g "$@"