|
16 | 16 | |spring.grpc.client.default-channel.max-inbound-metadata-size | `+++8192B+++` | Maximum metadata size allowed to be received by the channel (default 8KiB). Set to '-1' to use the highest possible limit (not recommended). |
17 | 17 | |spring.grpc.client.default-channel.negotiation-type | `+++plaintext+++` | The negotiation type for the channel. |
18 | 18 | |spring.grpc.client.default-channel.secure | `+++true+++` | Flag to say that strict SSL checks are not enabled (so the remote certificate could be anonymous). |
| 19 | +|spring.grpc.client.default-channel.service-config | | Map representation of the service config to use for the channel |
19 | 20 | |spring.grpc.client.default-channel.ssl.bundle | | SSL bundle name. |
20 | 21 | |spring.grpc.client.default-channel.ssl.enabled | | Whether to enable SSL support. Enabled automatically if "bundle" is provided unless specified otherwise. |
21 | 22 | |spring.grpc.client.default-channel.user-agent | | The custom User-Agent for the channel. |
22 | 23 | |spring.grpc.client.enabled | `+++true+++` | Whether to enable client autoconfiguration. |
| 24 | +|spring.grpc.client.inprocess.enabled | `+++true+++` | Whether to configure the in-process channel factory. |
| 25 | +|spring.grpc.client.inprocess.exclusive | `+++true+++` | Whether the inprocess channel factory should be the only channel factory available. When the value is true, no other channel factory will be configured. |
23 | 26 | |spring.grpc.client.observations.enabled | `+++true+++` | Whether to enable Observations on the client. |
24 | 27 | |spring.grpc.server.address | | The address to bind to. could be a host:port combination or a pseudo URL like static://host:port. Can not be set if host or port are set independently. |
25 | 28 | |spring.grpc.server.enabled | `+++true+++` | Whether to enable server autoconfiguration. |
|
31 | 34 | |spring.grpc.server.health.actuator.update-rate | `+++5s+++` | How often to update the health status. |
32 | 35 | |spring.grpc.server.health.enabled | `+++true+++` | Whether to auto-configure Health feature on the gRPC server. |
33 | 36 | |spring.grpc.server.host | `+++*+++` | Server address to bind to. The default is any IP address ('*'). |
| 37 | +|spring.grpc.server.inprocess.exclusive | | Whether the inprocess server factory should be the only server factory available. When the value is true no other server factory will be configured. |
| 38 | +|spring.grpc.server.inprocess.name | | The name of the in-process server or null to not start the in-process server. |
34 | 39 | |spring.grpc.server.keep-alive.max-age | | Maximum time a connection may exist before being gracefully terminated (default infinite). |
35 | 40 | |spring.grpc.server.keep-alive.max-age-grace | | Maximum time for graceful connection termination (default infinite). |
36 | 41 | |spring.grpc.server.keep-alive.max-idle | | Maximum time a connection can remain idle before being gracefully terminated (default infinite). |
|
0 commit comments