Skip to content

Commit

Permalink
Merge pull request #412 from jedwards4b/abort_bugfix
Browse files Browse the repository at this point in the history
fix hang on abort issue
  • Loading branch information
jedwards4b authored Oct 11, 2023
2 parents 811580f + 65aeefb commit 8038372
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cesm/driver/esmApp.F90
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ program esmApp
! Call Run for the ensemble driver
!-----------------------------------------------------------------------------
call ESMF_GridCompRun(ensemble_driver_comp, userRc=urc, rc=rc)
if (ESMF_LogFoundError(rcToCheck=urc, msg=ESMF_LOGERR_PASSTHRU, &
if (ESMF_LogFoundError(rcToCheck=rc, msg=ESMF_LOGERR_PASSTHRU, &
line=__LINE__, &
file=__FILE__)) &
call ESMF_Finalize(endflag=ESMF_END_ABORT)
Expand Down

0 comments on commit 8038372

Please sign in to comment.