Skip to content

Commit

Permalink
feat(airflow): make stackoverflow_cutoff_date configurable through en…
Browse files Browse the repository at this point in the history
…v vars
  • Loading branch information
Lee-W committed Nov 30, 2023
1 parent 74f21b2 commit 2ce54f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion airflow/dags/ingestion/ask-astro-load-stackoverflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
_WEAVIATE_CONN_ID = f"weaviate_{ask_astro_env}"
WEAVIATE_CLASS = os.environ.get("WEAVIATE_CLASS", "DocsDev")
ask_astro_weaviate_hook = AskAstroWeaviateHook(_WEAVIATE_CONN_ID)
stackoverflow_cutoff_date = "2021-09-01"
stackoverflow_cutoff_date = os.environ.get("STACKOVERFLOW_CUTOFF_DATE", "2021-09-01")

stackoverflow_tags = [
"airflow",
Expand Down

0 comments on commit 2ce54f5

Please sign in to comment.