mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 20:12:31 +01:00
Fixing donate callback return code
This commit is contained in:
parent
0465e3a117
commit
55dfddff1d
1 changed files with 1 additions and 1 deletions
|
@ -1092,7 +1092,7 @@ wsrep_cb_status_t wsrep_sst_donate_cb (void* app_ctx, void* recv_ctx,
|
|||
current_gtid->seqno, bypass, env());
|
||||
}
|
||||
|
||||
return (ret > 0 ? WSREP_CB_SUCCESS : WSREP_CB_FAILURE);
|
||||
return (ret >= 0 ? WSREP_CB_SUCCESS : WSREP_CB_FAILURE);
|
||||
}
|
||||
|
||||
void wsrep_SE_init_grab()
|
||||
|
|
Loading…
Reference in a new issue