Skip to content
This repository has been archived by the owner on Aug 4, 2023. It is now read-only.

Offset iNaturalist DAG from monthly by one day #1072

Merged
merged 1 commit into from
Mar 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DAGs.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ The following are DAGs grouped by their primary tag:
| [`finnish_museums_workflow`](#finnish_museums_workflow) | `@daily` | `True` | image |
| [`flickr_workflow`](#flickr_workflow) | `@daily` | `True` | image |
| [`freesound_workflow`](#freesound_workflow) | `@quarterly` | `False` | audio |
| [`inaturalist_workflow`](#inaturalist_workflow) | `@monthly` | `False` | image |
| [`inaturalist_workflow`](#inaturalist_workflow) | `0 0 2 * *` | `False` | image |
| [`jamendo_workflow`](#jamendo_workflow) | `@monthly` | `False` | audio |
| [`metropolitan_museum_workflow`](#metropolitan_museum_workflow) | `@daily` | `True` | image |
| `museum_victoria_workflow` | `@monthly` | `False` | image |
Expand Down
2 changes: 1 addition & 1 deletion openverse_catalog/dags/providers/provider_workflows.py
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ def __post_init__(self):
ingester_class=INaturalistDataIngester,
create_preingestion_tasks=INaturalistDataIngester.create_preingestion_tasks,
create_postingestion_tasks=INaturalistDataIngester.create_postingestion_tasks,
schedule_string="@monthly",
schedule_string="0 0 2 * *",
pull_timeout=timedelta(days=5),
upsert_timeout=timedelta(days=5),
),
Expand Down