Skip to content

Commit

Permalink
Increase number of records per part to cut down on multi-part episodes
Browse files Browse the repository at this point in the history
  • Loading branch information
Brad-Edwards committed May 24, 2024
1 parent a6905b6 commit c6f298f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion orchestration/airflow/dags/publishing/tasks/create_pod.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ def write_pod_script(
scripts = []
num_summaries = len(pod_summaries)
if num_summaries > 50:
num_parts = (num_summaries + 29) // 30
num_parts = (num_summaries + 39) // 40
summaries_per_part = (num_summaries + num_parts - 1) // num_parts
else:
num_parts = 1
Expand Down
2 changes: 1 addition & 1 deletion orchestration/airflow/dags/shared/utils/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
"IT": "Information Theory",
"LG": "Machine Learning",
"LO": "Logic in Computer Science",
"MA": "Multiagent Systems",
"MA": "Multi-agent Systems",
"MM": "Multimedia",
"MS": "Mathematical Software",
"NA": "Numerical Analysis",
Expand Down

0 comments on commit c6f298f

Please sign in to comment.