Browse Source

Fixing donate callback return code

pull/374/head
Alexey Yurchenko 11 years ago
committed by Nirbhay Choubey
parent
commit
55dfddff1d
  1. 2
      sql/wsrep_sst.cc

2
sql/wsrep_sst.cc

@ -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…
Cancel
Save