test_suite: fix correct split brain and recreate resource

This commit is contained in:
Frank Liepold 2014-01-30 11:22:07 +01:00
parent 3a4a0df5ba
commit bf81056d2d
1 changed files with 4 additions and 1 deletions

View File

@ -348,8 +348,10 @@ function switch2primary_correct_split_brain
fi
marsadm_do_cmd $new_primary "connect" "$res" || lib_exit 1
marsadm_do_cmd $new_primary "secondary" "$res" || lib_exit 1
marsadm_do_cmd $new_secondary "secondary" "$res" || lib_exit 1
marsadm_do_cmd $new_secondary "down" "$res" || lib_exit 1
marsadm_do_cmd $new_secondary "leave-resource --force" "$res" || lib_exit 1
marsadm_do_cmd $new_primary "log-purge-all" "$res" || lib_exit 1
marsadm_do_cmd $new_primary "primary" "$res" || lib_exit 1
switch2primary_check_standalone_primary $new_primary $res
if [ $network_cut -eq 1 ]; then
@ -399,6 +401,7 @@ function switch2primary_recreate_resource
marsadm_do_cmd $host "secondary" "$res" || lib_exit 1
marsadm_do_cmd $host "down" "$res" || lib_exit 1
marsadm_do_cmd $host "leave-resource" "$res" || lib_exit 1
lib_remote_idfile $host "rm -rf $res_dir" || lib_exit 1
sleep 15
marsadm_do_cmd $host "delete-resource --force" "$res" || lib_exit 1
marsadm_do_cmd $host "create-resource --force" "$res $dev" || lib_exit 1
}