Eric Gribkoff
dcbfa70226
Merge pull request #16432 from ericgribkoff/allow_pthread_atfork_mac
...
Define the allow pthread atfork macro for gRPC Python MacOS builds
6 years ago
Mehrdad Afshari
3a5da64e5d
Move _server_cert_config_fetcher_wrapper to credentials.pyx.pxi
6 years ago
Eric Gribkoff
e04ba7568c
Merge pull request #16318 from ericgribkoff/fork_support_v2_check_if_shutdown
...
Python fork handler checks if gRPC core successfully shutdown
6 years ago
Juanli Shen
142acb3b0f
Merge pull request #16425 from lamby/spelling-errors
...
Fix a number of spelling errors.
6 years ago
Juanli Shen
8a57e86b16
Merge pull request #16396 from AspirinSJL/simplify_arena
...
Simplify call arena size growth
6 years ago
Eric Gribkoff
b59d8674d2
Python post-fork handler: exit if grpc shutdown fails
6 years ago
Eric Gribkoff
2cec9c5344
Merge pull request #16264 from ericgribkoff/fork_support_v2
...
Support gRPC Python client-side fork with epoll1
6 years ago
Eric Gribkoff
0ff641a246
Define the allow pthread atfork macro for gRPC Python MacOS builds
6 years ago
Mark D. Roth
5b0e7537ab
Merge pull request #16398 from markdroth/round_robin_size_t_fix
...
Fix round_robin to avoid negative size_t value.
6 years ago
Eric Gribkoff
f8cf7ee56d
Support gRPC Python client-side fork with epoll1
...
A process may fork after invoking grpc_init() and use gRPC in the child
if and only if the child process first destroys all gRPC resources
inherited from the parent process and invokes grpc_shutdown().
Subsequent to this, the child will be able to re-initialize and use
gRPC. After fork, the parent process will be able to continue to use
existing gRPC resources such as channels and calls without interference
from the child process.
To facilitate gRPC Python applications meeting the above constraints,
gRPC Python will automatically destroy and shutdown all gRPC Core
resources in the child's post-fork handler, including cancelling
in-flight calls (see detailed design below). From the client's
perspective, the child process is now free to create new channels and
use gRPC.
6 years ago
Jan Tattermusch
f10596f0f3
Merge pull request #16415 from jtattermusch/cmake_likes_assembly
...
cmake: disable assembly optimizations only when necessary
6 years ago
Jan Tattermusch
8f04899b21
Merge pull request #16412 from jtattermusch/building_no_install
...
Improve BUILDING.md
6 years ago
Chris Lamb
fba18d8551
Fix a number of spelling errors.
6 years ago
Mehrdad Afshari
35cde99212
Merge pull request #16421 from mehrdada/stricter-api-contract-for-grpc-server
...
Ensure thread_pool is not None for grpc.Server
6 years ago
Mehrdad Afshari
0aa1bd2ed4
Ensure thread_pool is not None for grpc.Server
6 years ago
hcaseyal
82bc60c0e1
Merge pull request #16170 from hcaseyal/timer_test
...
Create timer unit tests for long running services and clarify behavior for infinite deadline timers
6 years ago
Juanli Shen
f94d98833b
Remove unnecessary atm
6 years ago
Hope Casey-Allen
087bbb2f4e
Disable test on windows
6 years ago
Hope Casey-Allen
91cb48ad1a
Add timer tests for long running services
6 years ago
Vijay Pai
570e6e6986
Merge pull request #16387 from vjpai/negative_size
...
size_t shouldn't have the value -1; switch to int
6 years ago
Jan Tattermusch
1096fa81a4
update ssl-performance.md
6 years ago
Jan Tattermusch
7132cd7164
cmake: disable assembly optimizations only when necessary
6 years ago
Vijay Pai
72695b886e
Add an inproc-based non-polling test of core callback API
6 years ago
Mehrdad Afshari
6c45188c96
Merge pull request #16401 from mehrdada/fix-sort-in-packages-xsl
...
Fix sort issue in package build page
6 years ago
Vijay Pai
9e515951ac
size_t shouldn't have the value -1; switch to int
6 years ago
Jan Tattermusch
22d8e60bdb
improve BUILDING.md
6 years ago
Jan Tattermusch
5d302d1a9f
Merge pull request #16399 from jtattermusch/csharp_upgrading_examples
...
Upgrade C# examples to grpc1.14.1 and protobuf3.6.1
6 years ago
Zhouyihai Ding
5fb2281ada
Merge pull request #16404 from ZhouyihaiDing/fix_16392
...
PHP: fix failed test 16392
6 years ago
ZhouyihaiDing
461c910a8c
PHP: fix failed test 16392
6 years ago
Vijay Pai
ccc6ee3db0
Merge pull request #15984 from g-easy/hdrs
...
Move GetSpanFromServerContext() to public header.
6 years ago
Vijay Pai
46008f0d76
Merge pull request #15926 from cartr/platform_solaris_aix
...
Make gRPC buildable with AIX and Solaris (no official support)
6 years ago
Bill Feng
373c5b31db
added qps tests on bazel
6 years ago
Mehrdad Afshari
0a69991080
Fix sort issue in package build page
6 years ago
Jan Tattermusch
a554a5cd70
regenerate protos for C# examples
6 years ago
Jan Tattermusch
5be1311472
upgrade HelloworldLegacyCsproj to grpc1.14.1 and protobuf 3.6.1
6 years ago
Jan Tattermusch
c818320a3d
upgrade dotnet examples to grpc1.14.1 and protobuf 3.6.1
6 years ago
Mark D. Roth
add72762a7
Fix round_robin to avoid negative size_t value.
6 years ago
Zhouyihai Ding
af89e8c00e
Merge pull request #16394 from ZhouyihaiDing/fix_16392
...
PHP: fix failed test 16392
6 years ago
Juanli Shen
49e74c087e
Simplify call arena size growth
6 years ago
ZhouyihaiDing
66a4efc5a8
PHP: fix failed test 16392
6 years ago
Juanli Shen
1a81d985d8
Merge pull request #16307 from AspirinSJL/revert_c_to_tf
...
Revert to TRANSIENT_FAILURE during backoff
6 years ago
Vijay Pai
472b9327c0
Merge pull request #16374 from vjpai/census
...
Move a census file from src/cpp to src/core since core depends on it
6 years ago
Vijay Pai
616b5d798a
Cast an index to size_t to avoid sign-conversion warning
6 years ago
Juanli Shen
25f7d0f6f4
Revert to TRANSIENT_FAILURE during backoff
6 years ago
Mark D. Roth
8ba4563629
Merge pull request #16373 from markdroth/mu_guard_cleanup
...
Move C++ mu_guard class out of C-core public headers and fix style.
6 years ago
Juanli Shen
b8972046b4
Merge pull request #16306 from AspirinSJL/pf_check_state_before_watch
...
PF: Check connectivity state before watching
6 years ago
Yash Tibrewal
3bb0cd7769
Merge pull request #16375 from yashykt/nulcheck
...
Add a nullptr check
6 years ago
Mehrdad Afshari
0a1d0d25a2
Merge pull request #16372 from mehrdada/remove-proto-js_embed-hack
...
Remove protobuf js_embed hack
6 years ago
Vijay Pai
e28ed218dd
Merge pull request #16273 from codebender/update_cli_instructions
...
Update instructions to include how to satisfy gFlags prerequisite on a Mac
6 years ago
Yash Tibrewal
b22c3009d4
Fix typo
6 years ago