Skip to content

Commit

Permalink
fix(rss_subscription): processing bucket decalaration
Browse files Browse the repository at this point in the history
Fixes RSS Ingestion lambda
  • Loading branch information
flamingquaks authored and bigadsoleiman committed Nov 28, 2023
1 parent 8a01fdb commit 600345e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/shared/layers/python-sdk/python/genai_core/chunks.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from typing import List, Optional
from langchain.text_splitter import RecursiveCharacterTextSplitter

PROCESSING_BUCKET_NAME = os.environ["PROCESSING_BUCKET_NAME"]
PROCESSING_BUCKET_NAME = os.environ.get("PROCESSING_BUCKET_NAME", "")
s3 = boto3.resource("s3")


Expand Down

0 comments on commit 600345e

Please sign in to comment.