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

resolver: refactor common code for polling-based resolvers #28979

Merged
merged 13 commits into from
Mar 10, 2022
Prev Previous commit
Next Next commit
remove now-incorrect assertion
  • Loading branch information
markdroth committed Feb 26, 2022
commit 38be9d4a6f616a034b8697fca5b12c7b3f222dcd
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,6 @@ void PollingResolver::OnRequestComplete(Result result) {
}

void PollingResolver::OnRequestCompleteLocked(Result result) {
GPR_ASSERT(request_ != nullptr);
request_.reset();
if (shutdown_) return;
if (result.service_config.ok() && result.addresses.ok()) {
Expand Down