Repository: incubator-geode Updated Branches: refs/heads/feature/GEODE-1372 2330ee550 -> 18024e6bf
GEODE-1812 Removed assert from toData code. Project: http://git-wip-us.apache.org/repos/asf/incubator-geode/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-geode/commit/18024e6b Tree: http://git-wip-us.apache.org/repos/asf/incubator-geode/tree/18024e6b Diff: http://git-wip-us.apache.org/repos/asf/incubator-geode/diff/18024e6b Branch: refs/heads/feature/GEODE-1372 Commit: 18024e6bf630c9dfaeac10070ed57fe3996ff3f7 Parents: 2330ee5 Author: Hitesh Khamesra <[email protected]> Authored: Wed Aug 24 12:19:31 2016 -0700 Committer: Hitesh Khamesra <[email protected]> Committed: Wed Aug 24 12:19:31 2016 -0700 ---------------------------------------------------------------------- .../distributed/internal/membership/InternalDistributedMember.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/18024e6b/geode-core/src/main/java/com/gemstone/gemfire/distributed/internal/membership/InternalDistributedMember.java ---------------------------------------------------------------------- diff --git a/geode-core/src/main/java/com/gemstone/gemfire/distributed/internal/membership/InternalDistributedMember.java b/geode-core/src/main/java/com/gemstone/gemfire/distributed/internal/membership/InternalDistributedMember.java index 067b71b..54a0997 100755 --- a/geode-core/src/main/java/com/gemstone/gemfire/distributed/internal/membership/InternalDistributedMember.java +++ b/geode-core/src/main/java/com/gemstone/gemfire/distributed/internal/membership/InternalDistributedMember.java @@ -937,7 +937,7 @@ public class InternalDistributedMember public void toDataPre_GFE_9_0_0_0(DataOutput out) throws IOException { - Assert.assertTrue(vmKind > 0); + //Assert.assertTrue(vmKind > 0); // NOTE: If you change the serialized format of this class // then bump Connection.HANDSHAKE_VERSION since an // instance of this class is sent during Connection handshake.
