DATAREDIS-932 - Fix typo in exception message.

This commit is contained in:
Mark Paluch
2019-02-18 08:48:24 +01:00
parent 933a0c5837
commit f2287c6ec5

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.");
}
/*