FAQ | This is a LIVE service | Changelog

Skip to content
Snippets Groups Projects
Commit 27b546c8 authored by L. Bower's avatar L. Bower
Browse files

simplifying the import required to a single statement by putting...

simplifying the import required to a single statement by putting generate_all_jobs within the job_runner file
parent 4418349e
No related branches found
No related tags found
No related merge requests found
......@@ -7,8 +7,6 @@ import shutil
import pandas as pd
from met_processing.runner.common import job_runner
from met_processing.runner.common.generate_all_jobs import generate_all_jobs
MAX_WORKERS: int = 10
......@@ -93,7 +91,7 @@ def generate_all(sys_config, run_config):
# Run all generate
try:
generate_all_jobs(run_config, sys_config, slurm_mode)
job_runner.generate_all_jobs(run_config, sys_config, slurm_mode)
except Exception:
logger.exception(f"Some failure when running one of the generate job", exc_info=True)
raise
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment