bazel: asan config and documentation.#707
Merged
mattklein123 merged 1 commit intoenvoyproxy:masterfrom Apr 6, 2017
Merged
Conversation
Some of the integration tests are actually failing under ASAN, which is surprising given they don't do this under the cmake ASAN runs. Will investigate further before we rollover to this in CI.
mattklein123
approved these changes
Apr 6, 2017
rshriram
pushed a commit
to rshriram/envoy
that referenced
this pull request
Oct 30, 2018
* Add auth filter from mixer filter. * use UserInfo constructor. * fix format
jpsim
pushed a commit
that referenced
this pull request
Nov 28, 2022
Adds functionality built on top of the upstream Envoy changes in #10097 which will allow the bridging layers to manually flush stats based on lifecycle changes in the mobile application. Note: Stats must be flushed from the main Envoy thread, as validated by the following assertion failure that occurs when attempting to flush from another thread: ``` [2020-02-27 14:38:43.181][4716580][critical][assert] [external/envoy/source/common/thread_local/thread_local_impl.cc:190] assert failure: std::this_thread::get_id() == main_thread_id_. ``` Follow-up PRs will call these functions from Java/Objective-C. Part of envoyproxy/envoy-mobile#573. Signed-off-by: Michael Rebello <me@michaelrebello.com> Signed-off-by: JP Simard <jp@jpsim.com>
jpsim
pushed a commit
that referenced
this pull request
Nov 29, 2022
Adds functionality built on top of the upstream Envoy changes in #10097 which will allow the bridging layers to manually flush stats based on lifecycle changes in the mobile application. Note: Stats must be flushed from the main Envoy thread, as validated by the following assertion failure that occurs when attempting to flush from another thread: ``` [2020-02-27 14:38:43.181][4716580][critical][assert] [external/envoy/source/common/thread_local/thread_local_impl.cc:190] assert failure: std::this_thread::get_id() == main_thread_id_. ``` Follow-up PRs will call these functions from Java/Objective-C. Part of envoyproxy/envoy-mobile#573. Signed-off-by: Michael Rebello <me@michaelrebello.com> Signed-off-by: JP Simard <jp@jpsim.com>
mathetake
added a commit
that referenced
this pull request
Mar 3, 2026
**Commit Message** https://go.dev/doc/devel/release#go1.24.minor Signed-off-by: Takeshi Yoneda <t.y.mathetake@gmail.com> Co-authored-by: Dan Sun <dsun20@bloomberg.net>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Some of the integration tests are actually failing under ASAN, which is surprising given they don't
do this under the cmake ASAN runs. Will investigate further before we rollover to this in CI.