Skip to content
Snippets Groups Projects
Commit b6e44408 authored by Craig Tiller's avatar Craig Tiller
Browse files

Disable fail fast for qps driver

parent eeef86ce
No related branches found
No related tags found
No related merge requests found
...@@ -83,6 +83,7 @@ static std::unordered_map<string, std::deque<int>> get_hosts_and_cores( ...@@ -83,6 +83,7 @@ static std::unordered_map<string, std::deque<int>> get_hosts_and_cores(
auto stub = WorkerService::NewStub( auto stub = WorkerService::NewStub(
CreateChannel(*it, InsecureChannelCredentials())); CreateChannel(*it, InsecureChannelCredentials()));
grpc::ClientContext ctx; grpc::ClientContext ctx;
ctx.set_fail_fast(false);
CoreRequest dummy; CoreRequest dummy;
CoreResponse cores; CoreResponse cores;
grpc::Status s = stub->CoreCount(&ctx, dummy, &cores); grpc::Status s = stub->CoreCount(&ctx, dummy, &cores);
...@@ -166,6 +167,7 @@ namespace runsc { ...@@ -166,6 +167,7 @@ namespace runsc {
static ClientContext* AllocContext(list<ClientContext>* contexts) { static ClientContext* AllocContext(list<ClientContext>* contexts) {
contexts->emplace_back(); contexts->emplace_back();
auto context = &contexts->back(); auto context = &contexts->back();
context->set_fail_fast(false);
return context; return context;
} }
...@@ -435,6 +437,7 @@ void RunQuit() { ...@@ -435,6 +437,7 @@ void RunQuit() {
CreateChannel(workers[i], InsecureChannelCredentials())); CreateChannel(workers[i], InsecureChannelCredentials()));
Void dummy; Void dummy;
grpc::ClientContext ctx; grpc::ClientContext ctx;
ctx.set_fail_fast(false);
GPR_ASSERT(stub->QuitWorker(&ctx, dummy, &dummy).ok()); GPR_ASSERT(stub->QuitWorker(&ctx, dummy, &dummy).ok());
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment