Skip to content

Commit

Permalink
fix for previous commit (again)
Browse files Browse the repository at this point in the history
  • Loading branch information
haiqi96 committed Nov 15, 2024
1 parent 6b5e60f commit ff15840
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def search(
self: Task,
job_id: str,
task_id: int,
job_config_obj: dict,
job_config: dict,
archive_id: str,
clp_metadata_db_conn_params: dict,
results_cache_uri: str,
Expand All @@ -120,7 +120,7 @@ def search(
clp_home = Path(os.getenv("CLP_HOME"))
archive_directory = Path(os.getenv("CLP_ARCHIVE_OUTPUT_DIR"))
clp_storage_engine = os.getenv("CLP_STORAGE_ENGINE")
search_config = SearchJobConfig.parse_obj(job_config_obj)
search_config = SearchJobConfig.parse_obj(job_config)

task_command = make_command(
storage_engine=clp_storage_engine,
Expand Down

0 comments on commit ff15840

Please sign in to comment.