| Commit message (Collapse) | Author | Age |
... | |
| | | | |\ \
| | | | | | |
| | | | | | | |
Require port and server_port interop flags.
|
| | | | |\ \ \
| | | | | | |/
| | | | | |/| |
Add Python support for server SSL certificate reloading.
|
| | | |\ \ \ \
| | | | |/ / /
| | | |/| | | |
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Previously, a secure server is configured with SSL credentials during
initialization, and those credentials will be used for the lifetime of
the server. If the user wants the server to use new credentials, the
user has to restart the server, resulting in server downtime. This
change enables the user to optionally configure the server with a
"certificiate config fetcher," such that on every new client
connection, the server will call the config fetcher before performing
the handshake, allowing the user application to optionally specify new
certificate configuration for the server to use (the fetcher can
return a "no change" and the server continues to use its current
certificate configuration).
|
| | | |\ \ \ \
| | | | | | | |
| | | | | | | | |
Inline Closure
|
| | |/ / / / /
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
The previous packaging structure exhibited strange behavior of
slowness when trying to use pip to install grpcio-reflection
or grpcio-health-checking in a single line with grpcio-tools.
The root cause seems to be the complicated interaction between
pip and setuptools and the fact that we ship a single .tar.gz
"source" archive for `grpcio_reflection` and
`grpcio_health_checking` packages. `pip` tries to build this
"source" package, and our build process wants to generate
code for the `.proto` files in the package. However, we have
already processed the `.proto` files into `_pb2.py` files in
our artifact build process, and installing `grpcio_tools`
to get `grpcio_{reflection,health_checking}` seems excessive.
The behavior gets worse since `setuptools`, while building
the package from source, tries to fetch `grpcio_tools` from
source and build that too. This takes a while, since it
involves compiling a bunch of native code from `protobuf` and
`grpc` and requires a C compiler to boot.
This commit modifies the Python artifact for the two packages
so that they will not include the raw `.proto` files in the
distribution uploaded to PyPI, nor would they contain the
Python module that does the preprocessing code generation
from the respective .proto files. Instead, a specific code
path is taken when the generated `_pb2_grpc` Python module is
not present in the package to provide such functionality
when built from the gRPC git repository (and hence when built
from our CI infrastructure.)
|
| | | |_|_|/
| | |/| | |
| | | | | |
| | | | | | |
Also sort arguments to ArgumentParser.add_argument in idiomatic order.
|
| | | |\ \ \
| | | |/ / /
| | |/| | | |
|
| |/ / / / |
|
| |/ / / |
|
| | | | |
|
| |\ \ \
| | | | |
| | | | | |
Cleaning up census code.
|
| |\ \ \ \
| | | | | |
| | | | | | |
Client channel backup poller
|
| | | | | | |
|
| | | | | | |
|
| | | |_|/
| | |/| | |
|
| | | | | |
|
| | |/ / |
|
| | | | |
|
| | | | |
|
| |\| | |
|
| | | | |
|
|\ \ \ \
| | |/ /
| |/| |
| | | | |
fix-stream-compression-config-interface
|
| | | | |
|
| | | | |
|
| |\| | |
|
| |\ \ \ |
|
| | | | | |
|
| | | |\ \
| | | |/ /
| | |/| | |
|
| | | | | |
|
| | | | | |
|
| | | |/
| | |/| |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
Also converting to .cc
|
| | |/ |
|
| |\| |
|
| | |\
| | | |
| | | | |
Devolve staticmethod to ordinary function.
|
| | |\ \
| | | | |
| | | | | |
Change plugin credentials API to support both sync and async modes
|
| | | |/
| | |/| |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | |\
| | | |/
| | |/| |
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
This commit is a rebase of an old contribution with minor formatting
edits (cf. https://github.com/grpc/grpc/pull/8663)
[Original Author]
Masood Malekghassemi <atash@google.com>
Date: Mon Nov 7 14:49:09 2016 -0800
Contributor is a Xoogler and the contribution is owned by Google Inc.
as per the copyright assignment agreement with the original author,
as it was drafted during their employment with Google Inc.
|
|\ \ \ \
| | |/ /
| |/| |
| | | | |
fix-stream-compression-config-interface
|
| | | |\
| | |_|/
| |/| | |
|
| | | | |
|
| |\ \ \
| | | | |
| | | | | |
Fix stream compression transport duplicate
|