Skip to content

Commit

Permalink
Merge pull request #6201 from yersan/WFCORE-7010
Browse files Browse the repository at this point in the history
[WFCORE-7010] Allow starting Domain Mode tests under 'default' stability…
  • Loading branch information
yersan authored Oct 4, 2024
2 parents 205e257 + b1aef0d commit 5bb70c4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ public void start() {
commandBuilder.setProcessControllerAddress(configuration.getHostControllerManagementAddress());
}
Stability stability = this.configuration.getStability();
if (stability != Stability.DEFAULT) {
if (stability != null) {
commandBuilder.setStability(stability.toString());
}
// the process working dir
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ private static URI toURI(URL url) {

private boolean rewriteConfigFiles = true;

private Stability stability = Stability.DEFAULT;
private Stability stability;

public WildFlyManagedConfiguration(String jbossHome) {
if (jbossHome != null) {
Expand Down

0 comments on commit 5bb70c4

Please sign in to comment.