Commit 81b0ccbc authored by gejun's avatar gejun

Fix compilation issue in src/brpc/policy/thrift_protocol.cpp

parent 422cb520
...@@ -488,7 +488,7 @@ void ProcessThriftRequest(InputMessageBase* msg_base) { ...@@ -488,7 +488,7 @@ void ProcessThriftRequest(InputMessageBase* msg_base) {
if (!method_status->OnRequested()) { if (!method_status->OnRequested()) {
cntl->SetFailed(ELIMIT, "Reached %s's max_concurrency=%d", cntl->SetFailed(ELIMIT, "Reached %s's max_concurrency=%d",
cntl->thrift_method_name().c_str(), cntl->thrift_method_name().c_str(),
method_status->max_concurrency()); method_status->MaxConcurrency());
return thrift_done->Run(); return thrift_done->Run();
} }
} }
...@@ -522,7 +522,7 @@ void ProcessThriftRequest(InputMessageBase* msg_base) { ...@@ -522,7 +522,7 @@ void ProcessThriftRequest(InputMessageBase* msg_base) {
} }
if (!server_accessor.AddConcurrency(cntl)) { if (!server_accessor.AddConcurrency(cntl)) {
cntl->SetFailed(ELIMIT, "Reached server's max_concurrency=%d", cntl->SetFailed(ELIMIT, "Reached server's max_concurrency=%d",
server->max_concurrency()); server->options().max_concurrency);
break; break;
} }
if (FLAGS_usercode_in_pthread && TooManyUserCode()) { if (FLAGS_usercode_in_pthread && TooManyUserCode()) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment