Soheil Hassas Yeganeh
f9516b04d5
Merge pull request #19218 from soheilhy/string-view
...
Introduce string_view and use it for gpr_split_host_port.
6 years ago
Lidi Zheng
ce41cde908
Fix string/bytes problem && lint
6 years ago
Karthik Ravi Shankar
51626535cd
Fix BUILD file
6 years ago
Karthik Ravi Shankar
d33c02748f
Merge branch 'master' into continue-migration-to-impl
6 years ago
Hope Casey-Allen
7f666a25ff
Remove GetC/hildSocketUuid and stop storing uuid inside ConnectedSubchannel
6 years ago
Hope Casey-Allen
03b063568d
Minor fixes
6 years ago
Jan Tattermusch
8bfb713c80
fix Grpc.Tools build
6 years ago
Jan Tattermusch
a827504ffb
get rid of workaround to build net45 targets on linux and mac
6 years ago
apolcyn
da3784bf89
Merge pull request #19397 from apolcyn/fix_ares_windows_tcp
...
Simplify and fix c-ares TCP path on Windows
6 years ago
Alexander Polcyn
3467f2dfdc
Fix log typo
6 years ago
Hope Casey-Allen
a019017840
Address minor comments
6 years ago
Hope Casey-Allen
3c72a939fc
Remove subchannel_destroyed_
6 years ago
Hope Casey-Allen
a240860008
Minor fix
6 years ago
Hope Casey-Allen
d137ee8a85
Fix format
6 years ago
Hope Casey-Allen
b7dc509429
Minor fix
6 years ago
Hope Casey-Allen
47871c274e
Change channelz SubchannelNode to no longer take a ref to the Subchannel
6 years ago
Nicolas Noble
16931832de
Merge pull request #19424 from apolcyn/drop_ruby_22_backport
...
Backport "Drop support for ruby < 2.3" to 1.22.x
6 years ago
Nicolas Noble
cca7c8804a
Merge pull request #19432 from jtattermusch/upb_cmake_unness
...
building upb as part of cmake build is not necessary (for v1.22.x)
6 years ago
Lidi Zheng
7b82924066
Update module import according to name changes
6 years ago
Muxi Yan
6a00530586
Merge pull request #18607 from muxi/check_protobuf_pod_version
...
Add protobuf pod version sanitizer
6 years ago
Jan Tattermusch
57ec1541aa
Merge pull request #19420 from hlopko/migrate_legacy_proto
...
Migrate from dep.proto. to dep[ProtoInfo] provider
6 years ago
Jan Tattermusch
ba3509bef8
Merge pull request #19449 from grpc/jtattermusch-patch-1
...
Make sure Grpc metapackage includes Grpc.Core.targets
6 years ago
Lidi Zheng
aa567e5364
Adopt reviewer's advices
6 years ago
Lidi Zheng
5f98b1e8ef
Fix 2/3 str/bytes compatibility issue
6 years ago
Lidi Zheng
12c296b3dc
[Python] Add authentication extension example
6 years ago
Moiz Haidry
2a589e253e
Merge pull request #19435 from mhaidrygoog/grpc_to_grpc_impl
...
Modify codegen to use grpc_impl namespace and other cleanup
6 years ago
Guantao Liu
60ed718209
Merge pull request #19434 from guantaol/metadata_trace
...
Fix the missing traces of metadata unref.
6 years ago
Muxi Yan
bb7829b87b
Relocate cpu_cost to correct test case
6 years ago
Marcel Hlopko
497e271fe9
Merge branch 'master' into migrate_legacy_proto
...
* master: (27 commits)
Revert "Surface exceptions in gevent IO manager"
Fast-path for no-error case for grpc_error_get_status.
Fix multiprocessing example for MacOS.
Add example Python server using compression.
Update googletest version to v1.8.1
Hail mary.
Update Protobuf version
Also updated fedora 2.2 and 2.3 dockerfiles
Fix ios simulator failure
Pin bundler where needed
Resolve xcodebuild issue on Mac
Fix hard written port
Drop support for ruby < 2.3; update and unskip distrib tests
Unref unselected subchannels in Pick First.
fix run_one_test
More run_tests.py script fix
fix tests so that they run
Clang tidy
add tests for bad stream IDs
Another python fix.
...
6 years ago
Lidi Zheng
51d6416691
Merge pull request #19440 from grpc/revert-19356-i15880
...
Revert "Surface exceptions in gevent IO manager"
6 years ago
Jan Tattermusch
1ce6d98fb4
formatting
6 years ago
Jan Tattermusch
650c0216c3
Make sure Grpc metapackage includes Grpc.Core.targets
6 years ago
Karthik Ravi Shankar
8b91dc5fd2
Move more of usage to grpc_impl
...
1) Create server_context_impl and completion_queue_impl headers.
2) Move more of usage of ClientContext, ServerContext to grpc_impl
6 years ago
Yunjia Wang
7567bd7892
Merge remote-tracking branch 'upstream/master' into extend_thd_stack_size
6 years ago
Arjun Roy
3891e03ece
Merge pull request #19220 from arjunroy/no_err_fastpath
...
Fast-path for no-error case for grpc_error_get_status.
6 years ago
Lidi Zheng
9427d1c9ce
Revert "Surface exceptions in gevent IO manager"
6 years ago
Muxi Yan
e19537b4a7
Merge pull request #19425 from muxi/port-19404
...
Port #19404 - Bump Protobuf podspec version
6 years ago
Yunjia Wang
d73abc7b56
Modify comments style
6 years ago
rmstar
45a5f541ee
Merge pull request #19412 from rmstar/update_gtest_version
...
Update googletest version to v1.8.1
6 years ago
Richard Belleville
00ad30c804
Merge pull request #19421 from gnossen/python_compression_example
...
Python Compression Example
6 years ago
Richard Belleville
c64b8e60eb
Merge pull request #19436 from gnossen/getsockopt_mac
...
Fix multiprocessing example for MacOS.
6 years ago
Arjun Roy
bff4dd1b2d
Fast-path for no-error case for grpc_error_get_status.
...
For each client side call, we execute grpc_error_get_status; in the common case
that there is no error, we save roughly 30 instructions and a call to strlen.
6 years ago
Richard Belleville
8fb51946bf
Fix multiprocessing example for MacOS.
...
A closer reading of the API for getsockopt revealed that we were
depending on an implementation detail of getsockopt on Linux. This
assumption breaks down on MacOS.
getsockopt merely guarantees that it will return on 0 in case of failure
and a value greater than 0 in case of success. There is no guarantee as
to *which* non-zero value you will receive. On Linux, it seems to be 1,
the value which was explicitly set. On MacOS, it seems to be the value
of the FLAG which was set, i.e. 512 for SO_REUSEPORT.
This commit ensures the check we use does not rely on either of these
implementation details.
6 years ago
Richard Belleville
624839b704
Add example Python server using compression.
6 years ago
Soheil Hassas Yeganeh
889224227c
Fix a typo.
6 years ago
Moiz Haidry
fbd5957ee8
Sanity and build fixes
6 years ago
Moiz Haidry
63083d4472
Code cleanup
6 years ago
Guantao Liu
3ddff567b7
Fix the missing traces of metadata unref.
6 years ago
Moiz Haidry
3ce20819cf
Modify codegen to use grpc_impl namespace and other cleanups
6 years ago
Jan Tattermusch
2bf9234f14
building upb as part of cmake build is not necessary
6 years ago