Skip to content

Commit

Permalink
Merge pull request #9 from RENCI/Remove-ASGS
Browse files Browse the repository at this point in the history
repair default step order reset
  • Loading branch information
PhillipsOwen authored Feb 7, 2024
2 parents 5acc2ad + 48e2b82 commit 175c5c5
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/common/pg_impl.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,13 +92,14 @@ def reset_job_order(self, workflow_type_name: str) -> bool:
# -------------------------
'101, 23', # staging
'104, 30', # adcirc2cog-tiff
'111, 25', # adcirc-to-kalpana-cog
'111, 27', # adcirc-to-kalpana-cog
'108, 25', # ast-run-harvester
'106, 24', # obs-mod-ast
'112, 21', # timeseries_ingest
'105, 19', # geotiff2cog
'105, 31', # geotiff2cog
'112, 19', # timeseriesdb-ingest
'102, 29', # load-geo-server
'110, 20', # collab-data-sync
'103, 21' # final-staging
'103, 21' # final-staging
],
'HECRAS': [
'201, 21', # load geo server step
Expand Down
4 changes: 4 additions & 0 deletions src/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,10 @@ async def get_all_sv_component_versions() -> json:
wf_steps_0 = results[1].get(ref_type)
wf_steps_1 = results[2].get(ref_type)

# if the workflow doesnt exist in each namespace skip the comparison
if wf_steps_0 is None or wf_steps_1 is None:
continue

# init the output of the namespace results
image_list: list = []

Expand Down

0 comments on commit 175c5c5

Please sign in to comment.