Muxi Yan
2bd38f29df
Batch fixes
6 years ago
Yash Tibrewal
a9bee9b7ed
Make Pluck use the changes made in FinalizeResult
6 years ago
Muxi Yan
e023468e9a
some nit fixes
6 years ago
Bill Feng
d069bb2444
more destination fixes
6 years ago
Muxi Yan
b22120f696
Test fix
6 years ago
Bill Feng
2532b8488c
updated toolchain subversion
6 years ago
Bill Feng
8006dddea2
updated toolchain subversion
6 years ago
Muxi Yan
c83ab56fe1
copy->mutableCopy
6 years ago
Muxi Yan
f4a77ce492
_call->_pipe
6 years ago
Muxi Yan
78c2176afc
Assign finished and canceled
6 years ago
Muxi Yan
b77203fdf5
Move blocks into varibles for readability
6 years ago
Muxi Yan
8d0cf9ec0a
clang-format
6 years ago
Muxi Yan
94d220d32c
Rename variable
6 years ago
Jan Tattermusch
9cfacc48ee
Merge pull request #17215 from jtattermusch/tool_test_msan_disable
...
Disable grpc_tool_test on msan
6 years ago
Vishal Powar
862bba6fb4
Updating sanity check for submodules
6 years ago
Vishal Powar
edab4e773e
Add envoy and its dependent repos as submodules in third_party
...
The basic criteria is to have protoc generate code for envoy api's and
this change achieves that.
e.g.
protoc -I=$PWD -I=$PWD/third_party/data-plane-api -I=$PWD/third_party/googleapis -I=$PWD/third_party/protobuf -I=$PWD/third_party/protoc-gen-validate third_party/data-plane-api/envoy/api/v2/eds.proto
6 years ago
Jan Tattermusch
0898074809
regenerate protos
6 years ago
Jan Tattermusch
72f57a0004
Merge pull request #17216 from jtattermusch/dont_trigger_17175
...
Remove THREAD_SANITIZER define as it triggers #17175
6 years ago
Tommy Chen
b343917c5f
revert .gitconfig
6 years ago
Jan Tattermusch
bff1452e5e
mark as experimental
6 years ago
Jan Tattermusch
310e1b07a7
adding THREAD_SANITIZER define seems to trigger #17175
6 years ago
Jan Tattermusch
e5f9f5ef46
disable grpc_tool_test on msan
6 years ago
Soheil Hassas Yeganeh
db2f88ae0f
Merge pull request #17205 from soheilhy/worktree-ref-counted-nonpolymorphic
...
Add a non-polymorphic variant to RefCounted.
6 years ago
vishalpowar
3c7492d02c
Merge pull request #17163 from vishalpowar/xds_plugin_rename_policy
...
Change the varible names that keep track of rr policy its state and
6 years ago
vishalpowar
e15a0cd061
Merge branch 'master' into xds_plugin_rename_policy
6 years ago
Soheil Hassas Yeganeh
1dd09321cd
Add a non-polymorphic variant to RefCounted.
...
Using RefCounted<Child, NonPolymorphic> users can now build smart,
ref-counted pointers without paying the costs of a vtable when it's
possible.
6 years ago
Vishal Powar
9e66b470ed
Change the varible names that keep track of rr policy its state and
...
resolution tracking to remove reference of the policy type (RR)
- Change RoundRobin to Child and rr_ to child_
- Changing the function names to remove reference to RR.
- Change 'grpclb' to 'xds' where parent policy is referenced.
6 years ago
Tommy Chen
644f6e28db
fixed if<space>
6 years ago
Srini Polavarapu
a933c40e67
Merge pull request #17209 from srini100/v1.16.x
...
Bump version to 1.16.1
6 years ago
Tommy Chen
b0e5e6414e
added check for GRPC_ENABLE_FORK_SUPPORT in register_fork_handlers
6 years ago
Tommy Chen
a01eeb47d7
re-running tests, squashing commits
6 years ago
Srini Polavarapu
25cd16ae58
Regenerate projects
6 years ago
Srini Polavarapu
350a8861ab
Bump version to 1.16.1
6 years ago
Vijay Pai
637e4ea9fb
Merge pull request #17197 from vjpai/ctx_clear
...
Properly clear metadata and other structs when reusing ServerContext in callback API
6 years ago
apolcyn
0fdc3d6517
Merge pull request #17204 from apolcyn/avoid_re_resolution_after_shutdown
...
Avoid re-resolution after c-ares resolver has been shut down
6 years ago
yihuaz
4125631471
Merge pull request #17149 from yihuazhang/remove_alts_shared_resource
...
Do not use ALTS shared resource.
6 years ago
Vijay Pai
0e29d7b9bc
Properly clear metadata and other structs when reusing ServerContext
6 years ago
Guantao Liu
85d85bd0c3
Merge pull request #17193 from guantaol/client_reuse_addr
...
Enable SO_REUSEADDR in client sockets
6 years ago
Alexander Polcyn
aac8b239a2
Avoid re-resolution after c-ares resolver has been shut down
6 years ago
Soheil Hassas Yeganeh
fda941a60c
Merge pull request #17202 from soheilhy/worktree-clientchannel-tsan
...
Fix data race in client_channel.
6 years ago
Yihua Zhang
3fefdde3cc
remove ALTS shared resources
6 years ago
Juanli Shen
1a4286df98
Merge pull request #17196 from AspirinSJL/revert_lb_update
...
Revert RR policy update in xDS
6 years ago
yihuaz
ea56b5f61e
Merge pull request #17148 from yihuazhang/test_branch
...
Resolve a deadlock caused by invocation of grpc_call_cancel inside of gRPC core
6 years ago
Yang Gao
f508114421
Merge pull request #17199 from grpc/revert-17185-fix-deadstrip
...
Revert "Fix timer manager debug code"
6 years ago
Soheil Hassas Yeganeh
3580c14829
Merge pull request #17191 from soheilhy/worktree-server-init
...
Remove memset from call_data from gRPC server.
6 years ago
Soheil Hassas Yeganeh
1f6d3189a9
Fix data race in client_channel.
...
Since retry_dispatched is next to the metadata bitfields, compiler will
generate a 2 byte store when we set this bitfield.
Move this field to the end of the structure to avoid such a data race.
Fixes #16896
6 years ago
Muxi Yan
6873456fd9
Revert "Fix timer manager debug code"
6 years ago
Soheil Hassas Yeganeh
0831996388
Remove memset from call_data from gRPC server.
...
This was missed due to an explicit memset(0) in init_call_elem.
6 years ago
Muxi Yan
06cbe9baeb
Merge pull request #17185 from muxi/fix-deadstrip
...
Fix timer manager debug code
6 years ago
Yihua Zhang
99d8216d06
create internal version of grpc_call_cancel.
6 years ago