Skip to content

Commit

Permalink
Fix wrong error message in converting key string.
Browse files Browse the repository at this point in the history
RB=884997
BUG=SI-3244
G=si-dev
R=kbalasub,klabur,xma
A=xma
  • Loading branch information
mchen07 committed Dec 16, 2016
1 parent ab3351a commit 44a360c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
-----
(RB=879362)
[RecordTemplate] Do not allocate RecordTemplate's _cache until the first usage in order to save unnecessary memory allocation.
(RB=884997)
Fix wrong error message in converting key string.

9.0.1
-----
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ else if (ComplexResourceKey.class.isAssignableFrom(keyType.getType()))
}
catch (IllegalArgumentException e)
{
throw new IllegalStateException(keyType.getType().getName() + " is not supported as a key type for BatchKVResponse", e);
throw new IllegalStateException(rawKey + " is not a valid value for resource key type " + keyType.getType().getName(), e);
}
}

Expand Down

0 comments on commit 44a360c

Please sign in to comment.