Repository: tinkerpop Updated Branches: refs/heads/master a9ee01eca -> e7ed59258
Stop using the deprecated className setting for auth in py tests CTR Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/e7ed5925 Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/e7ed5925 Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/e7ed5925 Branch: refs/heads/master Commit: e7ed592587556c9c89af2f886e8db76093ac49e9 Parents: a9ee01e Author: Stephen Mallette <[email protected]> Authored: Tue Jul 18 12:59:40 2017 -0400 Committer: Stephen Mallette <[email protected]> Committed: Tue Jul 18 12:59:40 2017 -0400 ---------------------------------------------------------------------- gremlin-python/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/e7ed5925/gremlin-python/pom.xml ---------------------------------------------------------------------- diff --git a/gremlin-python/pom.xml b/gremlin-python/pom.xml index ebc75fd..491ab08 100644 --- a/gremlin-python/pom.xml +++ b/gremlin-python/pom.xml @@ -600,7 +600,7 @@ settingsSecure.graphs.graph = "${gremlin.server.dir}/conf/tinkergraph-empty.prop settingsSecure.scriptEngines["gremlin-groovy"].plugins["org.apache.tinkerpop.gremlin.jsr223.ScriptFileGremlinPlugin"].files = ["${gremlin.server.dir}/scripts/generate-modern.groovy"] settings.serializers << new SerializerSettings("org.apache.tinkerpop.gremlin.driver.ser.GraphSONMessageSerializerGremlinV2d0", [:]) settingsSecure.port = 45941 -settingsSecure.authentication.className = "org.apache.tinkerpop.gremlin.server.auth.SimpleAuthenticator" +settingsSecure.authentication.authenticator = "org.apache.tinkerpop.gremlin.server.auth.SimpleAuthenticator" settingsSecure.authentication.config = [credentialsDb: "${gremlin.server.dir}/conf/tinkergraph-credentials.properties"] def serverSecure = new GremlinServer(settingsSecure)
