You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Below there is a code snippet from DefaultRedisSerializationContext ,line 130. The string() method assign param tuple to hashValueTuple, it should be assigned stringTuple I think.
@OverridepublicRedisSerializationContextBuilder<K, V> hashValue(SerializationPair<?> tuple) {
Assert.notNull(tuple, "SerializationPair must not be null");
this.hashValueTuple = tuple;
returnthis;
}
@OverridepublicRedisSerializationContextBuilder<K, V> string(SerializationPair<String> tuple) {
Assert.notNull(tuple, "SerializationPair must not be null");
this.hashValueTuple = tuple;
returnthis;
}