RED-4653: Hopefully corrected storage bucket env var name

This commit is contained in:
Viktor Seifert 2022-07-22 17:00:04 +02:00
parent 8f1ef0dd55
commit 2d6fe1cbd9

View File

@ -38,7 +38,7 @@ class Config(object):
self.storage_backend = read_from_environment("STORAGE_BACKEND", "s3")
# The bucket / container to pull files specified in queue requests from
self.storage_bucket = read_from_environment("STORAGE_BUCKET", "pyinfra-test-bucket")
self.storage_bucket = read_from_environment("STORAGE_BUCKET_NAME", "redaction")
# Endpoint for s3 storage
self.storage_endpoint = read_from_environment("STORAGE_ENDPOINT", "http://127.0.0.1:9000")