fixed ssl.keyPassword description
Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/a27a0483 Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/a27a0483 Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/a27a0483 Branch: refs/heads/TINKERPOP-1545-tp32 Commit: a27a04831fa7e43b26d23f14091b615a088eac83 Parents: 7ba7ecd Author: Robert Dale <[email protected]> Authored: Mon Jan 9 09:16:36 2017 -0500 Committer: Robert Dale <[email protected]> Committed: Mon Jan 9 09:16:36 2017 -0500 ---------------------------------------------------------------------- docs/src/reference/gremlin-applications.asciidoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/a27a0483/docs/src/reference/gremlin-applications.asciidoc ---------------------------------------------------------------------- diff --git a/docs/src/reference/gremlin-applications.asciidoc b/docs/src/reference/gremlin-applications.asciidoc index 235e2c5..1a2398d 100644 --- a/docs/src/reference/gremlin-applications.asciidoc +++ b/docs/src/reference/gremlin-applications.asciidoc @@ -615,7 +615,7 @@ The following table describes the various configuration options for the Gremlin |connectionPool.enableSsl |Determines if SSL should be enabled or not. If enabled on the server then it must be enabled on the client. |false |connectionPool.keyCertChainFile |The X.509 certificate chain file in PEM format. |_none_ |connectionPool.keyFile |The `PKCS#8` private key file in PEM format. |_none_ -|connectionPool.keyPassword |The password of the `keyFile` if it's not password-protected |_none_ +|connectionPool.keyPassword |The password of the `keyFile` if it is password-protected |_none_ |connectionPool.maxContentLength |The maximum length in bytes that a message can be sent to the server. This number can be no greater than the setting of the same name in the server configuration. |65536 |connectionPool.maxInProcessPerConnection |The maximum number of in-flight requests that can occur on a connection. |4 |connectionPool.maxSimultaneousUsagePerConnection |The maximum number of times that a connection can be borrowed from the pool simultaneously. |16 @@ -851,8 +851,8 @@ The following table describes the various configuration options that Gremlin Ser |ssl.enabled |Determines if SSL is turned on or not. |false |ssl.keyCertChainFile |The X.509 certificate chain file in PEM format. If this value is not present and `ssl.enabled` is `true` a self-signed certificate will be used (not suitable for production). |_none_ |ssl.keyFile |The `PKCS#8` private key file in PEM format. If this value is not present and `ssl.enabled` is `true` a self-signed certificate will be used (not suitable for production). |_none_ -|ssl.keyPassword |The password of the `keyFile` if it's not password-protected |_none_ -|ssl.trustCertChainFile |Trusted certificates for verifying the remote endpoint's certificate. The file should contain an X.509 certificate chain in PEM format. A system default will be used if this setting is not present. |_none_ +|ssl.keyPassword |The password of the `keyFile` if it is password-protected |_none_ +|ssl.trustCertChainFile |Trusted certificates for verifying the remote endpoint's certificate. The file should contain an X.509 certificate chain in PEM format. A system default will be used if this setting is not present. (Not supported) |_none_ |strictTransactionManagement |Set to `true` to require `aliases` to be submitted on every requests, where the `aliases` become the scope of transaction management. |false |threadPoolBoss |The number of threads available to Gremlin Server for accepting connections. Should always be set to `1`. |1 |threadPoolWorker |The number of threads available to Gremlin Server for processing non-blocking reads and writes. |1
