You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by da...@apache.org on 2017/01/30 20:00:52 UTC

tinkerpop git commit: fixed accidental change of port number

Repository: tinkerpop
Updated Branches:
  refs/heads/TINKERPOP-1599 adec3171a -> 07a21023d


fixed accidental change of port number


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/07a21023
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/07a21023
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/07a21023

Branch: refs/heads/TINKERPOP-1599
Commit: 07a21023d573d6f2a9946d3ac3c98a5fc0d68a55
Parents: adec317
Author: davebshow <da...@gmail.com>
Authored: Mon Jan 30 15:00:28 2017 -0500
Committer: davebshow <da...@gmail.com>
Committed: Mon Jan 30 15:00:28 2017 -0500

----------------------------------------------------------------------
 gremlin-python/pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/07a21023/gremlin-python/pom.xml
----------------------------------------------------------------------
diff --git a/gremlin-python/pom.xml b/gremlin-python/pom.xml
index 551b04f..5c8ffaa 100644
--- a/gremlin-python/pom.xml
+++ b/gremlin-python/pom.xml
@@ -500,7 +500,7 @@ log.info("Gremlin Server with no authentication started on port 45940")
 def settingsSecure = Settings.read("${gremlin.server.dir}/conf/gremlin-server-modern-py.yaml")
 settingsSecure.graphs.graph = "${gremlin.server.dir}/conf/tinkergraph-empty.properties"
 settingsSecure.scriptEngines["gremlin-groovy"].scripts = ["${gremlin.server.dir}/scripts/generate-modern.groovy"]
-settingsSecure.port = 45940
+settingsSecure.port = 45941
 settingsSecure.authentication.className = "org.apache.tinkerpop.gremlin.server.auth.SimpleAuthenticator"
 settingsSecure.authentication.config = [credentialsDb: "${gremlin.server.dir}/conf/tinkergraph-credentials.properties"]
 
@@ -508,7 +508,7 @@ def serverSecure = new GremlinServer(settingsSecure)
 serverSecure.start().join()
 
 project.setContextValue("gremlin.py.server.secure", serverSecure)
-log.info("Gremlin Server with authentication started on port 45940")
+log.info("Gremlin Server with authentication started on port 45941")
 ]]>
                                         </script>
                                     </scripts>