summaryrefslogtreecommitdiff
path: root/gate
diff options
context:
space:
mode:
Diffstat (limited to 'gate')
-rwxr-xr-xgate/post_test_hook.sh7
1 files changed, 1 insertions, 6 deletions
diff --git a/gate/post_test_hook.sh b/gate/post_test_hook.sh
index cf2645574c..28ad9b939e 100755
--- a/gate/post_test_hook.sh
+++ b/gate/post_test_hook.sh
@@ -266,13 +266,8 @@ $MANAGE db online_data_migrations
# creation of a new deleted marker instance.
set +e
archive_deleted_rows
+set -e
# Verify whether online data migrations run after archiving will succeed.
# See for more details: https://bugs.launchpad.net/nova/+bug/1824435
$MANAGE db online_data_migrations
-rc=$?
-set -e
-if [[ $rc -ne 2 ]]; then
- echo "Expected return code 2 from online_data_migrations until bug 1824435 is fixed"
- exit 2
-fi