Skip to content

Commit

Permalink
Schedule consistent with hepcrawl
Browse files Browse the repository at this point in the history
  • Loading branch information
ErnestaP committed Feb 23, 2024
1 parent 34b830a commit 0ac80fc
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dags/aps/aps_pull_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

@dag(
start_date=pendulum.today("UTC").add(days=-1),
schedule="@hourly",
schedule="30 */2 * * *",
params={"from_date": None, "until_date": None, "per_page": None},
)
def aps_pull_api():
Expand Down
1 change: 1 addition & 0 deletions dags/elsevier/elsevier_pull_sftp.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@

@dag(
start_date=pendulum.today("UTC").add(days=-1),
schedule="30 */3 * * *",
params={
"excluded_directories": [],
"force_pull": False,
Expand Down
2 changes: 1 addition & 1 deletion dags/hindawi/hindawi_pull_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

@dag(
start_date=pendulum.today("UTC").add(days=-1),
schedule="30 */3 * * *",
schedule="15 */3 * * *",
params={"from_date": None, "until_date": None, "record_doi": None},
)
def hindawi_pull_api():
Expand Down
1 change: 1 addition & 0 deletions dags/iop/iop_pull_sftp.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

@dag(
start_date=pendulum.today("UTC").add(days=-1),
schedule="30 */3 * * *",
params={
"excluded_directories": [],
"force_pull": False,
Expand Down
1 change: 1 addition & 0 deletions dags/oup/oup_pull_ftp.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

@dag(
start_date=pendulum.today("UTC").add(days=-1),
schedule="30 */3 * * *",
params={
"excluded_directories": [],
"force_pull": False,
Expand Down

0 comments on commit 0ac80fc

Please sign in to comment.