You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tinkerpop.apache.org by robertdale <gi...@git.apache.org> on 2018/10/02 08:22:14 UTC

[GitHub] tinkerpop pull request #943: TINKERPOP-2044 Configurable traversal to valida...

Github user robertdale commented on a diff in the pull request:

    https://github.com/apache/tinkerpop/pull/943#discussion_r221858009
  
    --- Diff: gremlin-driver/src/main/java/org/apache/tinkerpop/gremlin/driver/Cluster.java ---
    @@ -575,6 +585,8 @@ SslContext createSSLContext() throws Exception {
             private String trustStore = null;
             private String trustStorePassword = null;
             private String keyStoreType = null;
    +        private String validationRequest = "''";
    +        private boolean useBytecodeForValidation = false;
    --- End diff --
    
    `useBytecodeForValidation` was added but doesn't appear to be used anywhere else.


---