This is an automated email from the ASF dual-hosted git repository.
namelchev pushed a commit to branch ignite-2.16
in repository https://gitbox.apache.org/repos/asf/ignite.git
The following commit(s) were added to refs/heads/ignite-2.16 by this push:
new e0d23e465b9 IGNITE-20867 Fixed a typo in the cache directory name
check error message. (#11068)
e0d23e465b9 is described below
commit e0d23e465b98bd2c2b7e147c4bdd2fe2d8818272
Author: Anastasia Iakimova <[email protected]>
AuthorDate: Fri Nov 24 11:49:21 2023 +0300
IGNITE-20867 Fixed a typo in the cache directory name check error message.
(#11068)
(cherry picked from commit 5e85092c56421ff021019da94d0015ebabec4a57)
---
.../org/apache/ignite/internal/processors/cache/ClusterCachesInfo.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/ClusterCachesInfo.java
b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/ClusterCachesInfo.java
index fa9833e20b5..0689e12f91a 100644
---
a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/ClusterCachesInfo.java
+++
b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/ClusterCachesInfo.java
@@ -1136,7 +1136,7 @@ public class ClusterCachesInfo {
if (containsInvalidFileNameChars(ccfg)) {
err = new IgniteCheckedException("Cache start failed. Cache or
group name contains the characters " +
- "that are not allowed in file names [cache= + cacheName " +
+ "that are not allowed in file names [cache=" + cacheName +
(ccfg.getGroupName() == null ? "" : ", group=" +
ccfg.getGroupName()) + ']');
}