1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-21 14:50:08 +03:00

B #5927: Fix domfsthaw timeout (#2280)

This commit is contained in:
Victor Palma 2022-09-15 13:08:34 +02:00 committed by GitHub
parent bcd319feb3
commit a2caade29a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -108,7 +108,7 @@ SNAP_CREATE_CMD=$(cat <<EOF
set -e -o pipefail
if virsh -c $LIBVIRT_URI domfsfreeze $DEPLOY_ID ; then
trap "virsh -c $LIBVIRT_URI domfsthaw $DEPLOY_ID" EXIT
trap "virsh -c $LIBVIRT_URI domfsthaw $DEPLOY_ID || true" EXIT
fi
RBD="${RBD}"