Skip to content

Commit f92e1eb

Browse files
authored
Merge pull request wildfly#19505 from rhusar/WFLY-21242-fixup
WFLY-21243 fixup: make bumped model version the current one which eva…
2 parents 22b2e19 + e952fc5 commit f92e1eb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mod_cluster/extension/src/main/java/org/wildfly/extension/mod_cluster/ModClusterSubsystemModel.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ public enum ModClusterSubsystemModel implements SubsystemModel {
2323
VERSION_6_0_0(6, 0, 0), // WildFly 14-15, EAP 7.2
2424
*/
2525
VERSION_7_0_0(7, 0, 0), // WildFly 16-26, EAP 7.3-7.4
26-
VERSION_8_0_0(8, 0, 0), // WildFly 27-38
26+
VERSION_8_0_0(8, 0, 0), // WildFly 27-38, EAP 8.0-present
2727
VERSION_9_0_0(9, 0, 0), // WildFly 39-present
2828
;
2929

30-
public static final ModClusterSubsystemModel CURRENT = VERSION_8_0_0;
30+
public static final ModClusterSubsystemModel CURRENT = VERSION_9_0_0;
3131

3232
private final ModelVersion version;
3333

0 commit comments

Comments
 (0)