DATAREDIS-932 - Fix typo in exception message.

This commit is contained in:
Mark Paluch
2019-02-18 08:49:07 +01:00
parent 680dabc3e8
commit c14b1f67d6

View File

@@ -2446,7 +2446,7 @@ public class JedisClusterConnection implements RedisClusterConnection {
*/
@Override
public void multi() {
throw new InvalidDataAccessApiUsageException("MUTLI is currently not supported in cluster mode.");
throw new InvalidDataAccessApiUsageException("MULTI is currently not supported in cluster mode.");
}
/*