We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://github.com/dragonflydb/dragonfly/actions/runs/13892743446/job/38867312517
The text was updated successfully, but these errors were encountered:
somehow we are stuck on the
VLOG(1) << "Waiting for all full sync cut confirmations"; sync_block->Wait();
next messages were done after terminating because sync_block->cancel() was called in err_handler
Sorry, something went wrong.
Possible cause: to cancel replication we use Cancel error, but the streamer in this case can skip the callback WaitForInflightToComplete check
void JournalStreamer::Cancel() { ... if (!cntx_->IsError()) { WaitForInflightToComplete(); } }
Possible cause: to cancel replication we use Cancel error, but the streamer in this case can skip the callback WaitForInflightToComplete check void JournalStreamer::Cancel() { ... if (!cntx_->IsError()) { WaitForInflightToComplete(); } }
yes already aware of this. If you recall I was checking memory ordering around that synchronization primitive but IMO I think there is another issue.
Agree. I just write about it to not forgetting in the future
BorysTheDev
No branches or pull requests
https://github.com/dragonflydb/dragonfly/actions/runs/13892743446/job/38867312517
The text was updated successfully, but these errors were encountered: