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

Commit 6edb47c

Browse files
committed
Merge pull request #22 from noexng/fix-upstream-s3-bucket
fix setting bucket for upstream
2 parents 683a2d1 + 8b08462 commit 6edb47c

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)