This is an automated email from the ASF dual-hosted git repository.
sk0x50 pushed a commit to branch ignite-22115
in repository https://gitbox.apache.org/repos/asf/ignite-3.git
The following commit(s) were added to refs/heads/ignite-22115 by this push:
new 606222385b5 IGNITE-22115 Enable the colocation by default
606222385b5 is described below
commit 606222385b53255dfce688da2e8175e25c8cbaca
Author: sk0x50 <[email protected]>
AuthorDate: Tue Jun 10 18:10:21 2025 +0300
IGNITE-22115 Enable the colocation by default
---
.../java/org/apache/ignite/internal/lang/IgniteSystemProperties.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/modules/core/src/main/java/org/apache/ignite/internal/lang/IgniteSystemProperties.java
b/modules/core/src/main/java/org/apache/ignite/internal/lang/IgniteSystemProperties.java
index b08c7b8e06c..5afd7c97de2 100644
---
a/modules/core/src/main/java/org/apache/ignite/internal/lang/IgniteSystemProperties.java
+++
b/modules/core/src/main/java/org/apache/ignite/internal/lang/IgniteSystemProperties.java
@@ -100,7 +100,7 @@ public final class IgniteSystemProperties {
// TODO https://issues.apache.org/jira/browse/IGNITE-22522 Remove.
/* Feature flag for zone based colocation track */
public static boolean enabledColocation() {
- return getBoolean(COLOCATION_FEATURE_FLAG, false);
+ return getBoolean(COLOCATION_FEATURE_FLAG, true);
}
/**