This is an automated email from the ASF dual-hosted git repository.

namelchev pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite.git


The following commit(s) were added to refs/heads/master by this push:
     new 5e85092c564 IGNITE-20867 Fixed a typo in the cache directory name 
check error message. (#11068)
5e85092c564 is described below

commit 5e85092c56421ff021019da94d0015ebabec4a57
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)
---
 .../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()) + ']');
         }
 

Reply via email to