Skip to content

Commit

Permalink
run-zts test procfs/pool_state failed with uncorrectable I/O failure
Browse files Browse the repository at this point in the history
Once we trigger the zpool scrub, all zpool/zfs command gets stuck for 
180 seconds. Post 180 seconds zpool/zfs commands gets start executing 
however few more seconds(10s) it take to update the status. hence 
sleeping for 200 seconds so that we get the correct status.

Reviewed-by: Tony Hutter <[email protected]>
Reviewed-by: Brian Behlendorf <[email protected]>
Signed-off-by: vaibhav.bhanawat <[email protected]>
Closes openzfs#15364
  • Loading branch information
vaibhav-delphix authored and tonyhutter committed Nov 7, 2023
1 parent eaa62d9 commit 0ef1964
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tests/zfs-tests/tests/functional/procfs/pool_state.ksh
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,11 @@ remove_disk $SDISK
# background since the command will hang when the pool gets suspended. The
# command will resume and exit after we restore the missing disk later on.
zpool scrub $TESTPOOL2 &
sleep 3 # Give the scrub some time to run before we check if it fails
# Once we trigger the zpool scrub, all zpool/zfs command gets stuck for 180 seconds.
# Post 180 seconds zpool/zfs commands gets start executing however few more seconds(10s)
# it take to update the status.
# hence sleeping for 200 seconds so that we get the correct status.
sleep 200 # Give the scrub some time to run before we check if it fails

log_must check_all $TESTPOOL2 "SUSPENDED"

Expand Down

0 comments on commit 0ef1964

Please sign in to comment.