chenBright commented on issue #1390: URL: https://github.com/apache/brpc/issues/1390#issuecomment-2572495898
With #2858 , there are two ways to ignore designated memory leaks of Server: 1. Build bRPC with ASan or LSan,this memory leak will be automatically ignored. 2. Use annotation(`ANNOTATE_SCOPED_MEMORY_LEAK`) to instruct LSan to ignore this memory leaks, like ```c++ brpc::Server server; { ANNOTATE_SCOPED_MEMORY_LEAK; server.Start(...); } ``` -- 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