facebook / wangle

Wangle is a framework providing a set of common client/server abstractions for building services in a consistent, modular, and composable way.
Apache License 2.0
3.04k stars 536 forks source link

example/proxy crash on uninitialized backendPipeline_ of the ProxyFrontendHandler #115

Closed bluestn closed 1 year ago

bluestn commented 6 years ago

In the example/Proxy.cpp, class ProxyFrontendHandler has the uninitialized DefaultPipeline* backendPipeline_, this will cause ProxyServer crash occasionally.

fix:

DefaultPipeline* backendPipeline_{nullptr};

yfeldblum commented 1 year ago

Closing this issue because it is too old.