Skip to content
This repository was archived by the owner on May 23, 2024. It is now read-only.

Commit 8b08462

Browse files
committed
fix setting bucket for upstream
1 parent 683a2d1 commit 8b08462

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bob/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
bucket = s3.get_bucket(S3_BUCKET)
3434
upstream = None
3535
if UPSTREAM_S3_BUCKET:
36-
upstream = s3.get_bucket(S3_BUCKET)
36+
upstream = s3.get_bucket(UPSTREAM_S3_BUCKET)
3737

3838
# Make stdin/out as unbuffered as possible via file descriptor modes.
3939
sys.stdout = os.fdopen(sys.stdout.fileno(), 'w', 0)

0 commit comments

Comments
 (0)