DATAREDIS-1105 - Fix typo on RedisTemplate javadoc.
Also fix typo in log message.
This commit is contained in:
@@ -362,14 +362,14 @@ public abstract class RedisConnectionUtils {
|
||||
if (isPotentiallyThreadBoundCommand(commandToExecute)) {
|
||||
|
||||
if (log.isDebugEnabled()) {
|
||||
log.debug(String.format("Invoke '%s' on bound conneciton", method.getName()));
|
||||
log.debug(String.format("Invoke '%s' on bound connection", method.getName()));
|
||||
}
|
||||
|
||||
return invoke(method, obj, args);
|
||||
}
|
||||
|
||||
if (log.isDebugEnabled()) {
|
||||
log.debug(String.format("Invoke '%s' on unbound conneciton", method.getName()));
|
||||
log.debug(String.format("Invoke '%s' on unbound connection", method.getName()));
|
||||
}
|
||||
|
||||
RedisConnection connection = factory.getConnection();
|
||||
|
||||
@@ -450,7 +450,7 @@ public class RedisTemplate<K, V> extends RedisAccessor implements RedisOperation
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the default serializer to use for this template. All serializers (expect the
|
||||
* Sets the default serializer to use for this template. All serializers (except the
|
||||
* {@link #setStringSerializer(RedisSerializer)}) are initialized to this value unless explicitly set. Defaults to
|
||||
* {@link JdkSerializationRedisSerializer}.
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user