serverglen commented on issue #2002:
URL: 
https://github.com/apache/incubator-brpc/issues/2002#issuecomment-1321422814

   指的是ServerOptions中的`const Authenticator* auth;`?,按照如下方式设置试试:
   ```c++
   brpc::ServerOptions options;
   options.auth = nullptr;
   
   if (server.Start(point, &options) != 0) {
       LOG(ERROR) << "Fail to start Server";
       return -1;
   }
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@brpc.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@brpc.apache.org
For additional commands, e-mail: dev-h...@brpc.apache.org

Reply via email to