Skip to content

Commit

Permalink
migration: Update error message
Browse files Browse the repository at this point in the history
Signed-off-by: lcheng <[email protected]>
  • Loading branch information
cliping committed Jan 10, 2025
1 parent eca2264 commit ffbe5f6
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
- both_to_default:
# Use default value for default_tls_x509_verify and migrate_tls_x509_verify
default_qemu_conf = ["default_tls_x509_verify", "migrate_tls_x509_verify"]
err_msg = "Cannot read from TLS channel: Software caused connection abort"
err_msg = "Cannot read from TLS channel"
migrate_again = "yes"
status_error = "yes"
migrate_again_status_error = "no"
Expand All @@ -59,7 +59,7 @@
status_error = "no"
- set_default_to_0_and_migrate_to_1:
qemu_conf_dest = '{r".*default_tls_x509_verify\s*=.*": "default_tls_x509_verify=0", r".*migrate_tls_x509_verify\s*=.*": "migrate_tls_x509_verify=1"}'
err_msg = "Cannot read from TLS channel: Software caused connection abort"
err_msg = "Cannot read from TLS channel"
migrate_again = "yes"
status_error = "yes"
migrate_again_status_error = "no"
Expand All @@ -69,7 +69,7 @@
- set_default_to_1:
default_qemu_conf = ["migrate_tls_x509_verify"]
qemu_conf_dest = '{r".*default_tls_x509_verify\s*=.*": "default_tls_x509_verify=1"}'
err_msg = "Cannot read from TLS channel: Software caused connection abort"
err_msg = "Cannot read from TLS channel"
migrate_again = "yes"
status_error = "yes"
migrate_again_status_error = "no"

0 comments on commit ffbe5f6

Please sign in to comment.