Skip to content

Commit c497157

Browse files
committed
roachtest: fix live migration error message
Previously the error reporting would list host error vms, instead of live migration vms. This change fixes that. Epic: none Fixes: none Release note: none
1 parent dec7e21 commit c497157

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/cmd/roachtest/test_runner.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1261,7 +1261,7 @@ func (r *testRunner) runTest(
12611261
if liveMigrationVMNames != "" {
12621262
failureMsg = fmt.Sprintf("VMs had live migrations during the test run: %s\n\n**Other Failures:**\n%s", liveMigrationVMNames, failureMsg)
12631263
t.resetFailures()
1264-
t.Error(liveMigrationError(hostErrorVMNames))
1264+
t.Error(liveMigrationError(liveMigrationVMNames))
12651265
}
12661266

12671267
output := fmt.Sprintf("%s\ntest artifacts and logs in: %s", failureMsg, t.ArtifactsDir())

0 commit comments

Comments
 (0)