Skip to content
Merged
Show file tree
Hide file tree
Changes from 22 commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
156ad10
add multi thread test
Aug 16, 2021
cf697ed
use absl notification
Aug 16, 2021
1599227
clean up
Aug 17, 2021
4fc988e
Merge branch 'main' of https://github.com/envoyproxy/envoy into threa…
Aug 17, 2021
82aba23
make mock client change state on send to cache race condition
Aug 17, 2021
3658754
fix deadlock
Aug 29, 2021
58d3b7e
fix deadlock
Aug 29, 2021
afba040
fix deadlock
Aug 29, 2021
5931931
fix deadlock
Aug 29, 2021
85069f8
fix deadlock
Aug 29, 2021
210e656
fix dead lock
Aug 29, 2021
6064910
use real main thread instead of test thread
Sep 3, 2021
02a27c2
Merge branch 'main' of https://github.com/envoyproxy/envoy into threa…
Sep 3, 2021
2d99028
fix build failure
Sep 3, 2021
f4f4057
reset manager before clean up threading
Sep 3, 2021
dafbf24
remove cerr
Sep 4, 2021
098a446
fix clang tidy
Sep 4, 2021
72b4e8f
use start counter when posting to worker
Sep 4, 2021
1c63555
clean up
Sep 7, 2021
98bad3c
clean up
Sep 7, 2021
3323148
fix clang tidy
Sep 7, 2021
f03b4e3
add comments
Sep 9, 2021
4e44018
use absl barrier
Sep 16, 2021
4fa2321
refactor thread local store test
Sep 17, 2021
3a4d438
add threading test utility
Sep 18, 2021
e4193b2
fix format
Sep 18, 2021
405efc5
rename and cleanup
Sep 18, 2021
7297eff
move implementation to cc file
Sep 18, 2021
f7f5142
add TODO
Sep 20, 2021
9a2b405
add TODO
Sep 20, 2021
a3931c5
add TODO
Sep 20, 2021
48b6a62
add function comment
Sep 21, 2021
6b5356b
fix spelling
Sep 21, 2021
6267882
add comment
Sep 24, 2021
1ee0ebd
fix nits
Sep 24, 2021
674e48e
Merge branch 'main' of https://github.com/envoyproxy/envoy into threa…
Sep 28, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions test/extensions/filters/http/ext_authz/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ envoy_extension_cc_test(
srcs = ["config_test.cc"],
extension_names = ["envoy.filters.http.ext_authz"],
deps = [
"//source/common/grpc:async_client_manager_lib",
"//source/common/network:address_lib",
"//source/common/thread_local:thread_local_lib",
"//source/extensions/filters/http/ext_authz:config",
"//test/mocks/server:factory_context_mocks",
"//test/test_common:test_runtime_lib",
Expand Down
Loading