You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by ag...@apache.org on 2017/08/10 09:10:07 UTC

[1/2] ignite git commit: IGNITE-5950 incorrect assertion fixed

Repository: ignite
Updated Branches:
  refs/heads/master 988ffe3e1 -> b5ad72969


IGNITE-5950 incorrect assertion fixed


Project: http://git-wip-us.apache.org/repos/asf/ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/2e5c343d
Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/2e5c343d
Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/2e5c343d

Branch: refs/heads/master
Commit: 2e5c343d911e353c6d82630d09562664cc5e89e2
Parents: 0eedf46
Author: Sergey Chugunov <se...@gmail.com>
Authored: Mon Aug 7 11:34:01 2017 +0300
Committer: Sergey Chugunov <se...@gmail.com>
Committed: Mon Aug 7 11:34:01 2017 +0300

----------------------------------------------------------------------
 .../cache/persistence/tree/io/PagePartitionCountersIO.java         | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/2e5c343d/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/persistence/tree/io/PagePartitionCountersIO.java
----------------------------------------------------------------------
diff --git a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/persistence/tree/io/PagePartitionCountersIO.java b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/persistence/tree/io/PagePartitionCountersIO.java
index 9bd806f..d5b81c1 100644
--- a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/persistence/tree/io/PagePartitionCountersIO.java
+++ b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/persistence/tree/io/PagePartitionCountersIO.java
@@ -129,7 +129,7 @@ public class PagePartitionCountersIO extends PageIO {
             long cacheSize = PageUtils.getLong(pageAddr, off);
             off += 8;
 
-            assert cacheSize > 0 : cacheSize;
+            assert cacheSize >= 0 : cacheSize;
 
             Long old = res.put(cacheId, cacheSize);
 


[2/2] ignite git commit: Merge remote-tracking branch 'community/ignite-2.1.3'

Posted by ag...@apache.org.
Merge remote-tracking branch 'community/ignite-2.1.3'


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

Branch: refs/heads/master
Commit: b5ad7296997185ed2d078614b3ed6e9a6f405670
Parents: 988ffe3 2e5c343
Author: Alexey Goncharuk <al...@gmail.com>
Authored: Thu Aug 10 12:08:41 2017 +0300
Committer: Alexey Goncharuk <al...@gmail.com>
Committed: Thu Aug 10 12:08:41 2017 +0300

----------------------------------------------------------------------
 .../cache/persistence/tree/io/PagePartitionCountersIO.java         | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------