DATAREDIS-932 - Fix typo in exception message.

This commit is contained in:
Mark Paluch
2019-02-18 08:48:24 +01:00
parent 2622f054ab
commit 32cc2a60e7

View File

@@ -350,7 +350,7 @@ public class JedisClusterConnection implements DefaultedRedisClusterConnection {
*/
@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.");
}
/*