|
81 | 81 | "description": "Whether keepAlive will be performed when there are no outstanding RPC on a connection.",
|
82 | 82 | "defaultValue": false
|
83 | 83 | },
|
| 84 | + { |
| 85 | + "name": "grpc.client.GLOBAL.shutdown-grace-period", |
| 86 | + "type": "java.time.Duration", |
| 87 | + "sourceType": "net.devh.boot.grpc.client.config.GrpcChannelProperties", |
| 88 | + "description": "The time to wait for the channel to gracefully shutdown (completing all requests).\nIf set to a negative value, the channel waits forever.\nIf set to 0 the channel will force shutdown immediately.\nDefaults to 30s.", |
| 89 | + "defaultValue": "30s" |
| 90 | + }, |
84 | 91 | {
|
85 | 92 | "name": "grpc.client.GLOBAL.max-inbound-message-size",
|
86 | 93 | "type": "org.springframework.util.unit.DataSize",
|
|
94 | 101 | "description": "The negotiation type to use on the connection.",
|
95 | 102 | "defaultValue": "TLS"
|
96 | 103 | },
|
| 104 | + { |
| 105 | + "name": "grpc.client.GLOBAL.immediate-connect-timeout", |
| 106 | + "type": "java.time.Duration", |
| 107 | + "sourceType": "net.devh.boot.grpc.client.config.GrpcChannelProperties", |
| 108 | + "description": "Connection timeout at application startup. If set to a positive duration instructs a client to connect to GRPC-endpoint when GRPC stub is created.", |
| 109 | + "defaultValue": 0 |
| 110 | + }, |
97 | 111 | {
|
98 | 112 | "name": "grpc.client.GLOBAL.security.authority-override",
|
99 | 113 | "type": "java.lang.String",
|
|
108 | 122 | },
|
109 | 123 | {
|
110 | 124 | "name": "grpc.client.GLOBAL.security.ciphers",
|
111 |
| - "type": "java.lang.String", |
| 125 | + "type": "java.util.List<java.lang.String>", |
112 | 126 | "sourceType": "net.devh.boot.grpc.client.config.GrpcChannelProperties$Security",
|
113 | 127 | "description": "The cipher suite accepted for secure connections (in the order of preference). If not specified (null), then the default suites will be used."
|
114 | 128 | },
|
|
0 commit comments