Skip to content

Commit

Permalink
[Fix](regression-test) fix error url check in test_etl_failed case fo…
Browse files Browse the repository at this point in the history
…r cloud p0 (apache#40298)
  • Loading branch information
liaoxin01 authored Sep 10, 2024
1 parent 258ec3d commit f91463c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ suite("test_etl_failed", "load_p0") {
assertTrue(1 == 2, "etl should be failed")
break;
}
if (result[0][2].equals("CANCELLED") && result[0][13].contains("_load_error_log")) {
if (result[0][2].equals("CANCELLED") && result[0][13].contains("error_log")) {
break;
}
Thread.sleep(1000)
Expand Down

0 comments on commit f91463c

Please sign in to comment.