diff --git a/lambdas/gh_trending/handler.py b/lambdas/gh_trending/handler.py index 5bdaa22..d41704b 100644 --- a/lambdas/gh_trending/handler.py +++ b/lambdas/gh_trending/handler.py @@ -29,7 +29,7 @@ setup_logging() logger = logging.getLogger(__name__) -S3_KEY = "gh-trending.json" +S3_KEY = "data/gh-trending.json" GITHUB_BASE = "https://github.com" GITHUB_API = "https://api.github.com" diff --git a/lambdas/hn_digest/handler.py b/lambdas/hn_digest/handler.py index d194a11..46c2942 100644 --- a/lambdas/hn_digest/handler.py +++ b/lambdas/hn_digest/handler.py @@ -14,7 +14,7 @@ setup_logging() logger = logging.getLogger(__name__) -S3_KEY = "hn-digest.json" +S3_KEY = "data/hn-digest.json" HN_API = "https://hacker-news.firebaseio.com/v0" TOP_STORIES_URL = f"{HN_API}/topstories.json" diff --git a/lambdas/release_radar/handler.py b/lambdas/release_radar/handler.py index d270986..3e26ae6 100644 --- a/lambdas/release_radar/handler.py +++ b/lambdas/release_radar/handler.py @@ -16,7 +16,7 @@ setup_logging() logger = logging.getLogger(__name__) -S3_KEY = "release-radar.json" +S3_KEY = "data/release-radar.json" _CONFIG_FILENAME = "config/technologies.yml"