You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Accept SSL certificates by providing a resource path.
We now try to resolve SSL certificates first from the class path and then fall back to files when providing a path as string.
[resolves#313][closes#318]
Signed-off-by: Mark Paluch <[email protected]>
| `compatibilityMode` | Enable compatibility mode for cursored fetching. Required when using newer pgpool versions. Defaults to `false`. _(Optional)_
83
83
| `errorResponseLogLevel` | Log level for error responses. Any of `OFF`, `DEBUG`, `INFO`, `WARN` or `ERROR` Defaults to `DEBUG`. _(Optional)_
84
84
| `fetchSize` | The default number of rows to return when fetching results. Defaults to `0` for unlimited. _(Optional)_
85
-
| `forceBinary` | Whether to force binary transfer. Defaults to `false`. _(Optional)_
85
+
| `forceBinary` | Whether to force binary transfer. Defaults to `false`. _(Optional)_
86
86
| `loopResources` | TCP/Socket LoopResources (depends on the endpoint connection type). _(Optional)_
87
87
| `noticeLogLevel` | Log level for error responses. Any of `OFF`, `DEBUG`, `INFO`, `WARN` or `ERROR` Defaults to `DEBUG`. _(Optional)_
88
88
| `preferAttachedBuffers` |Configure whether codecs should prefer attached data buffers. The default is `false`, meaning that codecs will copy data from the input buffer into a byte array. Enabling attached buffers requires consumption of values such as `Json` to avoid memory leaks.
89
89
| `preparedStatementCacheQueries` | Determine the number of queries that are cached in each connection. The default is `-1`, meaning there's no limit. The value of `0` disables the cache. Any other value specifies the cache size.
90
-
| `options` | A `Map<String, String>` of connection parameters. These are applied to each database connection created by the `ConnectionFactory`. Useful for setting generic [PostgreSQL connection parameters][psql-runtime-config]. _(Optional)_
90
+
| `options` | A `Map<String, String>` of connection parameters. These are applied to each database connection created by the `ConnectionFactory`. Useful for setting generic [PostgreSQL connection parameters][psql-runtime-config]. _(
91
+
Optional)_
91
92
| `schema` | The search path to set. _(Optional)_
92
93
| `sslMode` | SSL mode to use, see `SSLMode` enum. Supported values: `DISABLE`, `ALLOW`, `PREFER`, `REQUIRE`, `VERIFY_CA`, `VERIFY_FULL`, `TUNNEL`. _(Optional)_
93
-
| `sslRootCert` | Path to SSL CA certificate in PEM format. _(Optional)_
94
-
| `sslKey` | Path to SSL key for TLS authentication in PEM format. _(Optional)_
95
-
| `sslCert` | Path to SSL certificate for TLS authentication in PEM format. _(Optional)_
94
+
| `sslRootCert` | Path to SSL CA certificate in PEM format. Can be also a resource path. _(Optional)_
95
+
| `sslKey` | Path to SSL key for TLS authentication in PEM format. Can be also a resource path. _(Optional)_
96
+
| `sslCert` | Path to SSL certificate for TLS authentication in PEM format. Can be also a resource path. _(Optional)_
96
97
| `sslPassword` | Key password to decrypt SSL key. _(Optional)_
0 commit comments