You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by sp...@apache.org on 2020/05/27 22:44:00 UTC

[tinkerpop] branch master updated (1657958 -> 95c49cb)

This is an automated email from the ASF dual-hosted git repository.

spmallette pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git.


    from 1657958  Merge branch '3.4-dev'
     new f83e3c6  Change test to use a port that doesn't match standard 8182
     new 656fabd  Merge branch '3.3-dev' into 3.4-dev
     new 95c49cb  Merge branch '3.4-dev'

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../src/main/javascript/gremlin-javascript/test/unit/client-test.js   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)


[tinkerpop] 03/03: Merge branch '3.4-dev'

Posted by sp...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

spmallette pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit 95c49cbbcc56445a35d765513d8c772df74d741f
Merge: 1657958 656fabd
Author: Stephen Mallette <sp...@genoprime.com>
AuthorDate: Wed May 27 18:43:44 2020 -0400

    Merge branch '3.4-dev'

 .../src/main/javascript/gremlin-javascript/test/unit/client-test.js   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)


[tinkerpop] 01/03: Change test to use a port that doesn't match standard 8182

Posted by sp...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

spmallette pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit f83e3c6f4c143b4362ed9061307a184d977cb69f
Author: Stephen Mallette <sp...@genoprime.com>
AuthorDate: Wed May 27 18:42:15 2020 -0400

    Change test to use a port that doesn't match standard 8182
    
    Sometimes I have a Gremlin Server running in the background on 8182 and then build and watch javascript tests tank with an obscure looking error that I never take to realize is related to these tests. CTR
---
 .../src/main/javascript/gremlin-javascript/test/unit/client-test.js   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gremlin-javascript/src/main/javascript/gremlin-javascript/test/unit/client-test.js b/gremlin-javascript/src/main/javascript/gremlin-javascript/test/unit/client-test.js
index b651e37..956a01a 100644
--- a/gremlin-javascript/src/main/javascript/gremlin-javascript/test/unit/client-test.js
+++ b/gremlin-javascript/src/main/javascript/gremlin-javascript/test/unit/client-test.js
@@ -36,7 +36,7 @@ describe('Client', function () {
       }
     };
 
-    const customClient = new Client('ws://localhost:8182', {traversalSource: 'g'});
+    const customClient = new Client('ws://localhost:9321', {traversalSource: 'g'});
     customClient._connection = connectionMock;
     customClient.submit(query)
   });
@@ -51,7 +51,7 @@ describe('Client', function () {
       }
     };
 
-    const customClient = new Client('ws://localhost:8182', {traversalSource: 'g', processor: customOpProcessor});
+    const customClient = new Client('ws://localhost:9321', {traversalSource: 'g', processor: customOpProcessor});
     customClient._connection = connectionMock;
     customClient.submit(query)
   });


[tinkerpop] 02/03: Merge branch '3.3-dev' into 3.4-dev

Posted by sp...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

spmallette pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit 656fabd769189e673fd0eb6949b04a6f333b4525
Merge: 6b51748 f83e3c6
Author: Stephen Mallette <sp...@genoprime.com>
AuthorDate: Wed May 27 18:43:33 2020 -0400

    Merge branch '3.3-dev' into 3.4-dev

 .../src/main/javascript/gremlin-javascript/test/unit/client-test.js   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)