aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
* Fix cmake export for grpcGravatar Stefan Hacker2018-01-14
| | | | | | | | | | | | | | | | | | | | This patch fixes two issues with the targets exported by the grpc cmake build: - Install directories are now given relative instead of absolute. Previously the exported targets would contain absolute paths to their created targets when they should be relative. The actual installation location stays the same as cmake automatically interprets the paths relative to CMAKE_INSTALL_PREFIX - ZLIB and OpenSSL are now linked using targets instead of the legacy library variables if possible. Using the legacy paths produces absolute paths to those dependencies in the export. With this change cmake inserts the target names instead. With these changes no more absolute paths are inserted into the export allowing the install location to be used as an artifact that can be moved or transfered to another machine and used there.
* Merge pull request #13965 from evanj/python-abort-fixGravatar kpayson642018-01-12
|\ | | | | python: Context.abort should fail RPC even for StatusCode.OK
* \ Merge pull request #14012 from ctiller/1111Gravatar Craig Tiller2018-01-12
|\ \ | | | | | | Remove ctiller projects
| | * python: Context.abort should fail RPC even for StatusCode.OKGravatar Evan Jones2018-01-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | grpc.ServicerContext.abort is documented to always raise an exception to terminate the RPC. The code argument "must not be StatusCode.OK." However, if you do pass StatusCode.OK, the RPC terminates successfully on the client side, but returns None. _server.py: If the user accidentally passes StatusCode.OK, treat it as StatusCode.UNKNOWN. This is what happens if the user accidentally passes something that is not a StatusCode instance. Additionally set details to ''. _metadata_code_details_test.py: update test to verify the behavior of abort with invalid codes.
| * | Remove ctiller projectsGravatar Craig Tiller2018-01-12
|/ /
* | Merge pull request #13289 from ncteisen/flow-control-part4Gravatar Vijay Pai2018-01-12
|\ \ | | | | | | Virtual Flow Control
* \ \ Merge pull request #14011 from apolcyn/avoid_ares_on_windowsGravatar apolcyn2018-01-12
|\ \ \ | | | | | | | | Correct a usage of select in grpc_build_system
* \ \ \ Merge pull request #13975 from danzh2010/adjustrcvbufGravatar Yang Gao2018-01-12
|\ \ \ \ | | | | | | | | | | change udp_server receive/send buffer size and set SO_RXQ_OVFL
* \ \ \ \ Merge pull request #14004 from jtattermusch/gpr_sync_windowsGravatar Jan Tattermusch2018-01-12
|\ \ \ \ \ | | | | | | | | | | | | Fix gpr_sync_test timing on Windows.
| | | * | | Correct usage of select in _get_external_depsGravatar Alexander Polcyn2018-01-12
| | | | | |
* | | | | | Merge pull request #14003 from grpc/revert-13697-nostdthreadGravatar Vijay Pai2018-01-12
|\ \ \ \ \ \ | | | | | | | | | | | | | | Revert "Stop using std::thread in C++ library since it can trigger exceptions"
* \ \ \ \ \ \ Merge pull request #13985 from markdroth/lb_policy_ref_simplificationGravatar Mark D. Roth2018-01-12
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Simply LB policy refcounting, again.
* \ \ \ \ \ \ \ Merge pull request #13742 from mehrdada/interop-matrixGravatar adelez2018-01-12
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Add 1.8.0 for C-based languages to interop matrix
* \ \ \ \ \ \ \ \ Merge pull request #13991 from apolcyn/avoid_ares_on_windowsGravatar apolcyn2018-01-12
|\ \ \ \ \ \ \ \ \ | | |_|_|_|_|/ / / | |/| | | | | | | Avoid the ares bazel dependency with grpc_no_ares=true
* | | | | | | | | Merge pull request #14000 from kpayson64/filter_status_code_2Gravatar kpayson642018-01-12
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | Add back filter_status_code test
* \ \ \ \ \ \ \ \ \ Merge pull request #13995 from zhangkun83/release_java_190Gravatar adelez2018-01-12
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | Add Java 1.9.0 release to client_matrix.py
* \ \ \ \ \ \ \ \ \ \ Merge pull request #13982 from vjpai/mkdirGravatar Vijay Pai2018-01-12
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Avoid link warnings: remove extraneous directories from -L and change mkdir order
| | | | | | | | * | | | start with fewer iterationsGravatar Jan Tattermusch2018-01-12
| | | | | | | | | | | |
| | | | | | | * | | | | Revert "Stop using std::thread in C++ library since it can trigger exceptions"Gravatar Jan Tattermusch2018-01-12
| |_|_|_|_|_|/ / / / / |/| | | | | | | | | |
* | | | | | | | | | | Merge pull request #13967 from grpc/vjpai-patch-1Gravatar Jan Tattermusch2018-01-12
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Mention requirements for regenerating projects
| | | | | | | | * | | | windows needs fflush after fprintfGravatar Jan Tattermusch2018-01-12
| |_|_|_|_|_|_|/ / / / |/| | | | | | | | | |
| | | | * | | | | | | Fix issue with filter_status_code test for proxy tests.Gravatar Ken Payson2018-01-11
| | | | | | | | | | |
| | | | * | | | | | | Revert "Revert "Set error status correctly on server side""Gravatar Ken Payson2018-01-11
| |_|_|/ / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit 951f84aea00a1f8a65cf160d7d8f342c30593000.
* | | | | | | | | | Merge pull request #13996 from grpc/revert-13794-fix_server_streamz_statsGravatar David G. Quintas2018-01-11
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | Revert "Set error status correctly on server side"
| * | | | | | | | | | Revert "Set error status correctly on server side"Gravatar David G. Quintas2018-01-11
|/ / / / / / / / / /
| | | * | | | | | | Add Java 1.9.0 release to client_matrix.pyGravatar Kun Zhang2018-01-11
| | | | | | | | | |
* | | | | | | | | | Merge pull request #13697 from vjpai/nostdthreadGravatar Vijay Pai2018-01-11
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | Stop using std::thread in C++ library since it can trigger exceptions
| | | | | | | | * | | formatGravatar Dan Zhang2018-01-11
| | | | | | | | | | |
| | | | | | | | * | | %zd->%dGravatar Dan Zhang2018-01-11
| | | | | | | | | | |
| | | | | | | | * | | change to int typeGravatar Dan Zhang2018-01-11
| | | | | | | | | | |
* | | | | | | | | | | Merge pull request #13972 from ctiller/ownerzGravatar Craig Tiller2018-01-11
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Substitute a11r for ctiller in all OWNERS files
| | | | | | * | | | | | Avoid building c-ares lib when grpc_no_ares is trueGravatar Alexander Polcyn2018-01-11
| | | | | | | | | | | |
* | | | | | | | | | | | Merge pull request #13957 from jtattermusch/connectivity_watcher_wo_exceptionsGravatar Jan Tattermusch2018-01-11
|\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | Do not throw and eat exceptions in C# connectivity watcher
| | | | | | | | | * | | | Don't unref null client_stats.Gravatar Mark D. Roth2018-01-11
| | | | | | | | | | | | |
| | | | | | | | | * | | | Revert "Merge pull request #13970 from ↵Gravatar Mark D. Roth2018-01-11
| |_|_|_|_|_|_|_|/ / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | grpc/revert-13857-lb_policy_ref_simplification" This reverts commit 61b32965bec11f4106c729bb0a428ff03d2d03ab, reversing changes made to 2eb22fd67d73a210c1f41d79efcfe52285ccb2ec.
| | | | | | | | | * | | fix portability errorsGravatar Dan Zhang2018-01-11
| | | | | | | | | | | |
| | | | * | | | | | | | Update CONTRIBUTING.mdGravatar Vijay Pai2018-01-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use 2 white spaces after period for consistency with rest of document
| | | | * | | | | | | | Merge branch 'master' into vjpai-patch-1Gravatar Vijay Pai2018-01-11
| | | | |\ \ \ \ \ \ \ \ | |_|_|_|/ / / / / / / / |/| | | | | | | | | | |
* | | | | | | | | | | | Merge pull request #13676 from markdroth/inlined_vectorGravatar Mark D. Roth2018-01-11
|\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | Implement InlinedVector independently of absl.
| | | | | | * | | | | | | Avoid linker warnings by removing extraneous directories from -L and making ↵Gravatar Vijay Pai2018-01-11
| |_|_|_|_|/ / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | at right time
* | | | | | | | | | | | Merge pull request #13977 from vjpai/subsurfaceGravatar Vijay Pai2018-01-10
|\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | Remove exec_ctx_fwd.h from surface public headers
| | | | | | | | | | | * | Reviewer feedbackGravatar ncteisen2018-01-10
| | | | | | | | | | | | |
* | | | | | | | | | | | | Merge pull request #13974 from nathanielmanistaatgoogle/12531Gravatar Nathaniel Manista2018-01-10
|\ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Elide cygrpc.Timespec.
| | * | | | | | | | | | | | exec_ctx_fwd.h should never have been in public headersGravatar Vijay Pai2018-01-10
| |/ / / / / / / / / / / / |/| | | | | | | | | | | |
| | | | | | | | | | * | | change to pass in valueGravatar Dan Zhang2018-01-10
| | | | | | | | | | | | |
| * | | | | | | | | | | | Elide cygrpc.TimespecGravatar Nathaniel Manista2018-01-10
| | |_|_|_|_|_|/ / / / / | |/| | | | | | | | | |
| | * | | | | | | | | | Implement InlinedVector independently of absl.Gravatar Mark D. Roth2018-01-10
| | | | | | | | | | | |
| | | | | * | | | | | | Resolve leak by freeing request payload if resources exhaustedGravatar Vijay Pai2018-01-10
| | | | | | | | | | | |
| | | | * | | | | | | | Substitute a11r for ctiller in all OWNERS filesGravatar Craig Tiller2018-01-10
| |_|_|/ / / / / / / / |/| | | | | | | | | |
* | | | | | | | | | | Merge pull request #13920 from menghanl/fix_release_matrixGravatar adelez2018-01-10
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Add go release versions to client_matrix.py