Skip to content

Commit

Permalink
IGNITE-8276 Fixed incorrect assertion during initialValue - Fixes #3827.
Browse files Browse the repository at this point in the history
Signed-off-by: Alexey Goncharuk <alexey.goncharuk@gmail.com>
  • Loading branch information
ilantukh authored and agoncharuk committed Apr 18, 2018
1 parent 8826fa1 commit b058bf6
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3571,12 +3571,10 @@ private IgniteTxLocalAdapter currentTx() {
* @param oldRow Old row if available.
* @throws IgniteCheckedException If update failed.
*/
protected boolean storeValue(CacheObject val,
protected boolean storeValue(@Nullable CacheObject val,
long expireTime,
GridCacheVersion ver,
@Nullable CacheDataRow oldRow) throws IgniteCheckedException {
assert val != null : "null values in update for key: " + key;

return storeValue(val, expireTime, ver, oldRow, null);
}

Expand Down

0 comments on commit b058bf6

Please sign in to comment.