fix error of stop state do not retry bug

This commit is contained in:
Charles0429 2022-12-16 03:07:47 +00:00 committed by ob-robot
parent d4e8af3ea4
commit 4daf50a3d1

View File

@ -54,6 +54,7 @@ public:
static bool in_ddl_retry_white_list(const int ret_code)
{
return is_not_master(ret_code)
|| is_stop_state(ret_code)
|| is_not_exist(ret_code)
|| is_retry(ret_code)
|| is_timeout(ret_code)