A fix in tp32 now allows testing of RequestMessage CTR
Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/1288ad37 Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/1288ad37 Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/1288ad37 Branch: refs/heads/TINKERPOP-1565 Commit: 1288ad377520adf697269551cb6c88042d1be314 Parents: 1154887 Author: Stephen Mallette <[email protected]> Authored: Tue Jan 10 18:20:55 2017 -0500 Committer: Stephen Mallette <[email protected]> Committed: Tue Jan 10 18:21:36 2017 -0500 ---------------------------------------------------------------------- .../java/org/apache/tinkerpop/gremlin/structure/io/Model.java | 3 --- 1 file changed, 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/1288ad37/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 341e62b..aa31756 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,9 +308,6 @@ public class Model { .before("3.0") .match(); - // 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()]; incompatibilityList.toArray(incompatibilities); addEntry("RequestMessage", obj, title, description, incompatibilities);
