You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (pair_->isSync()) {
// The send operation must flush all data to the underlying socket
// and then call handleSendCompletion. Therefore, the number of
// send completions must always be positive when calling waitSend.
GLOO_ENFORCE_GE(1, sendCompletions_);
The comments says sendCompletions must be positive, while the enforcement condition says 1>=sendCompletions. It seems to me the latter is wrong.