fix for import of RLS LB policy (#27736)

pull/27728/merge
Mark D. Roth 3 years ago committed by GitHub
parent bb1c7fce6c
commit cfcdbc4905
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      test/cpp/end2end/rls_end2end_test.cc

@ -108,7 +108,7 @@ class RlsServiceImpl : public RlsService {
if (it == responses_.end()) {
gpr_log(GPR_INFO, "RLS: no matching request, returning INTERNAL");
unmatched_requests_.push_back(*request);
return Status(INTERNAL, "no response entry");
return Status(StatusCode::INTERNAL, "no response entry");
}
res = it->second;
}

Loading…
Cancel
Save