IGNITE-5829 Linked TODO with ticket.
Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/00babb4b Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/00babb4b Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/00babb4b Branch: refs/heads/ignite-5816 Commit: 00babb4bcb0d432ae614a3cb98dfa7a61dfdbc1c Parents: 2005eec Author: Pavel Kovalenko <[email protected]> Authored: Tue Jul 25 15:50:43 2017 +0300 Committer: Pavel Kovalenko <[email protected]> Committed: Tue Jul 25 15:50:43 2017 +0300 ---------------------------------------------------------------------- .../processors/cache/persistence/freelist/FreeListImpl.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/00babb4b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/persistence/freelist/FreeListImpl.java ---------------------------------------------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/persistence/freelist/FreeListImpl.java b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/persistence/freelist/FreeListImpl.java index e99a5ee..d50020e 100644 --- a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/persistence/freelist/FreeListImpl.java +++ b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/persistence/freelist/FreeListImpl.java @@ -193,7 +193,7 @@ public class FreeListImpl extends PagesList implements FreeList, ReuseList { io.addRow(pageAddr, row, rowSize, pageSize()); if (needWalDeltaRecord(pageId, page, null)) { - // TODO This record must contain only a reference to a logical WAL record with the actual data. + // TODO IGNITE-5829 This record must contain only a reference to a logical WAL record with the actual data. byte[] payload = new byte[rowSize]; DataPagePayload data = io.readPayload(pageAddr, PageIdUtils.itemId(row.link()), pageSize()); @@ -239,7 +239,7 @@ public class FreeListImpl extends PagesList implements FreeList, ReuseList { assert payloadSize > 0 : payloadSize; if (needWalDeltaRecord(pageId, page, null)) { - // TODO This record must contain only a reference to a logical WAL record with the actual data. + // TODO IGNITE-5829 This record must contain only a reference to a logical WAL record with the actual data. byte[] payload = new byte[payloadSize]; DataPagePayload data = io.readPayload(pageAddr, PageIdUtils.itemId(row.link()), pageSize());
