Skip to content
New issue

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

BugFix: Fix the issue where the unary HTTP server occasionally receives the request packet but fails to trigger the business logic properly when using the fiber thread model #105

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion trpc/coroutine/fiber_blocking_noncontiguous_buffer.h
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,10 @@ class FiberBlockingNoncontiguousBuffer {
}

void Stop() {
stop_token_ = true;
{
std::lock_guard lk(mutex_);
stop_token_ = true;
}
not_full_.notify_one();
not_empty_.notify_one();
}
Expand Down
Loading