htuch
htuch
Fixes #779. Signed-off-by: Harvey Tuch
This is another shared variable (as encountered in https://github.com/libevent/libevent/issues/777) that TSAN flags as being problematic. This is because the signal handler can run on any thread. See https://github.com/envoyproxy/envoy/issues/6083 for a...
This is a shared global boolean flag that multiple threads write to, setting to 1. While this should usually work, it's technically undefined behavior and Clang TSAN flags this as...
Following up from https://github.com/envoyproxy/envoy-filter-example/pull/62. A few systematic issues we should think about fixing in this repo: 1. I'm not seeing the .circleci/config.yaml build/test phases running as part of the GH...
Today, we fork https://github.com/bazelbuild/rules_go to add our own variant of `go_proto_library` with the ability to use the PGV plugin for code generation, see: * https://github.com/lyft/protoc-gen-validate/blob/master/bazel/go_proto_library.bzl * https://github.com/lyft/protoc-gen-validate/blob/master/bazel/go_proto_library.bzl.diff rules_go recently gained...
Already discussed offline with @rodaine, but it would be nice to have an annotation that indicates the maximum depth in a WKT Struct field. This allows us to bound stack...
**What language does this apply to?** C++ (possibly others) **Describe the problem you are trying to solve.** We would like to allow unknown fields during proto parsing from wire (and...