You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by am...@apache.org on 2019/05/07 15:21:37 UTC

[ignite] 29/41: GG-17440 DMS feature id changed for the sake of rolling upgrade support.

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

amashenkov pushed a commit to branch gg-18540
in repository https://gitbox.apache.org/repos/asf/ignite.git

commit ac5baab7d240470a82887e1d9892ac6c5c73f72a
Author: ibessonov <be...@gmail.com>
AuthorDate: Mon Apr 29 16:22:57 2019 +0300

    GG-17440 DMS feature id changed for the sake of rolling upgrade support.
---
 .../src/main/java/org/apache/ignite/internal/IgniteFeatures.java | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/modules/core/src/main/java/org/apache/ignite/internal/IgniteFeatures.java b/modules/core/src/main/java/org/apache/ignite/internal/IgniteFeatures.java
index cf02103..22f83b1 100644
--- a/modules/core/src/main/java/org/apache/ignite/internal/IgniteFeatures.java
+++ b/modules/core/src/main/java/org/apache/ignite/internal/IgniteFeatures.java
@@ -35,9 +35,6 @@ public enum IgniteFeatures {
     /** Cache metrics v2 support. */
     CACHE_METRICS_V2(1),
 
-    /** Distributed metastorage. */
-    DISTRIBUTED_METASTORAGE(2),
-
     /** Data paket compression. */
     DATA_PACKET_COMPRESSION(3),
 
@@ -53,9 +50,11 @@ public enum IgniteFeatures {
      */
     TRANSACTION_OWNER_THREAD_DUMP_PROVIDING(6),
 
-
     /** Displaying versbose transaction information: --info option of --tx control script command. */
-    TX_INFO_COMMAND(7);
+    TX_INFO_COMMAND(7),
+
+    /** Distributed metastorage. */
+    DISTRIBUTED_METASTORAGE(11);
 
     /**
      * Unique feature identifier.