Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions streams/dshr_stream_mod.F90
Original file line number Diff line number Diff line change
Expand Up @@ -1035,8 +1035,8 @@ subroutine shr_stream_findBounds(strm, mDateIn, secIn, isroot_task, &

else if (strm%found_gvd .and. rDateIn >= rDategvd) then
if (limit) then
write(strm%logunit,*) trim(subName)," ERROR: limit on and rDateIn gt rDategvd",rDateIn,rDategvd
call shr_sys_abort(trim(subName)//" ERROR: rDateIn gt rDategvd limit true")
write(strm%logunit,*) trim(subName)," ERROR: limit on and rDateIn >= rDategvd",rDateIn,rDategvd
call shr_sys_abort(trim(subName)//" ERROR: rDateIn >= rDategvd limit true")
endif

if (.not.cycle) then
Expand Down Expand Up @@ -1135,8 +1135,8 @@ subroutine shr_stream_findBounds(strm, mDateIn, secIn, isroot_task, &

if (strm%found_gvd .and. rDateIn >= rDategvd) then
if (limit) then
write(strm%logunit,*) trim(subName)," ERROR: limit on and rDateIn gt rDategvd",rDateIn,rDategvd
call shr_sys_abort(trim(subName)//" ERROR: rDateIn gt rDategvd limit true")
write(strm%logunit,*) trim(subName)," ERROR: limit on and rDateIn >= rDategvd",rDateIn,rDategvd
call shr_sys_abort(trim(subName)//" ERROR: rDateIn >= rDategvd limit true")
endif

if (.not.cycle) then
Expand Down