Skip to content

Commit

Permalink
[test](routine load) fix some unstable routine load cases (#42252) (#…
Browse files Browse the repository at this point in the history
…44376)

pick #42252

Fix some unstable routine load case.
  • Loading branch information
sollhui authored Nov 21, 2024
1 parent ece8411 commit 3418dfd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,7 @@ suite("test_routine_load_condition","p0") {
}
break;
}
sleep(2000)
} finally {
sql "stop routine load for ${jobName}"
sql "DROP TABLE IF EXISTS ${tableName}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,9 @@ suite("test_routine_load_restart_fe", "docker") {
continue;
}
}
} catch (Exception e) {
sql "stop routine load for ${jobName}"
} catch (Exception e) {
log.info("exception: {}", e)
sql "DROP TABLE IF EXISTS ${tableName}"
}
}
Expand Down

0 comments on commit 3418dfd

Please sign in to comment.