You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by ok...@apache.org on 2017/01/10 16:11:11 UTC

[03/50] [abbrv] tinkerpop git commit: Enabled testing of ResponseMessage in io test framework

Enabled testing of ResponseMessage in io test framework

A fix in tp32 allowed this to start working on PR 523 CTR


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

Branch: refs/heads/TINKERPOP-1564
Commit: 0819a686a62e2f9ca413d7339460b3b267ea067d
Parents: 18f074a
Author: Stephen Mallette <sp...@genoprime.com>
Authored: Mon Jan 9 07:32:33 2017 -0500
Committer: Stephen Mallette <sp...@genoprime.com>
Committed: Mon Jan 9 07:32:33 2017 -0500

----------------------------------------------------------------------
 .../java/org/apache/tinkerpop/gremlin/structure/io/Model.java   | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/0819a686/gremlin-tools/gremlin-io-test/src/main/java/org/apache/tinkerpop/gremlin/structure/io/Model.java
----------------------------------------------------------------------
diff --git a/gremlin-tools/gremlin-io-test/src/main/java/org/apache/tinkerpop/gremlin/structure/io/Model.java b/gremlin-tools/gremlin-io-test/src/main/java/org/apache/tinkerpop/gremlin/structure/io/Model.java
index 0d80b8e..341e62b 100644
--- a/gremlin-tools/gremlin-io-test/src/main/java/org/apache/tinkerpop/gremlin/structure/io/Model.java
+++ b/gremlin-tools/gremlin-io-test/src/main/java/org/apache/tinkerpop/gremlin/structure/io/Model.java
@@ -308,7 +308,7 @@ public class Model {
                 .before("3.0")
                 .match();
 
-        // TODO: need to get Request/ResponseMessages to be included - logic is held in GraphSONMessageSerializer
+        // TODO: need to get RequestMessage to be included - logic is held in GraphSONMessageSerializer
         incompatibilityList.addAll(Compatibilities.with(GraphSONCompatibility.class).configuredAs(".*partial.*").match());
 
         final Compatibility[] incompatibilities = new Compatibility[incompatibilityList.size()];
@@ -321,9 +321,6 @@ public class Model {
                 .before("3.0")
                 .match();
 
-        // TODO: need to get Request/ResponseMessages to be included - logic is held in GraphSONMessageSerializer
-        incompatibilityList.addAll(Compatibilities.with(GraphSONCompatibility.class).configuredAs(".*partial.*").match());
-
         // TODO: temporary problem? seems to be something breaking in vertex serialization
         if (title.equals("Standard Result"))
             incompatibilityList.addAll(Compatibilities.with(GraphSONCompatibility.class).configuredAs(".*no-types").match());