Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WFCORE-4867] Highlight the config name in start message #4747

Merged
merged 1 commit into from
Jan 7, 2022

Conversation

khermano
Copy link
Contributor

@github-actions github-actions bot added the deps-ok Dependencies have been checked, and there are no significant changes label Sep 15, 2021
Copy link
Contributor

@rsvoboda rsvoboda left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Having info about domain config after host config was a bit unexpected, but maybe it's the way it should be. Or it was process controller which was started first 🤔, not sure now.

[Host Controller] 11:30:11,026 INFO  [org.jboss.as] (MSC service thread 1-2) WFLYSRV0049: WildFly Core 17.0.0.Beta8-SNAPSHOT - host config: host.xml - starting
[Host Controller] 11:30:11,511 INFO  [org.wildfly.security] (Host Controller Service Threads - 4) ELY00001: WildFly Elytron version 1.17.0.Final
[Host Controller] 11:30:11,674 INFO  [org.jboss.as.config] (Controller Boot Thread) WFLYSRV0049: - domain config: domain.xml - starting

Overall no concerns around this PR. @yersan can you pls review this PR as you were looking into the initial PR #4719.

Copy link
Collaborator

@yersan yersan left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this still needs some changes, at least for the localization.

It would be great also to have clear first what we want to be printed and when.
Do we really want this information at the beginning and repeat it at the end?

Why not use only the latest information printed when the server or host controller has started (successfully or with an error). For example, for standalone:

WFLYSRV0025: WildFly Full 26.0.0.Beta1-SNAPSHOT (WildFly Core 18.0.0.Beta1-SNAPSHOT) - started in 1977ms - Started 298 of 538 services (337 services are lazy, passive or on-demand) - Server configuration file in use: standalone.xml

For a Host controller (which is also a DC):

INFO [org.jboss.as] (Controller Boot Thread) WFLYSRV0025: WildFly Full 26.0.0.Beta1-SNAPSHOT (WildFly Core 18.0.0.Beta1-SNAPSHOT) - (Host Controller) started in 5920ms - Started 71 of 72 services (14 services are lazy, passive or on-demand) - Host Controller configuration files in use: domain.xml, host-master.xml

For a Host controller:
INFO [org.jboss.as] (Controller Boot Thread) WFLYSRV0025: WildFly Full 26.0.0.Beta1-SNAPSHOT (WildFly Core 18.0.0.Beta1-SNAPSHOT) - (Host Controller) started in 5920ms - Started 71 of 72 services (14 services are lazy, passive or on-demand) - Host Controller configuration files in use: host-slave.xml

Other ideas? Thoughts?

@khermano I think the above could be achieved around these lines on ServerService and DomainModelControllerService adding more information to the bootstrapListener.printBootStatistics() call, or when there is a failure, by using the ROOT_LOGGER.unsuccessfulBoot().

@@ -119,6 +120,10 @@ public void initializeDomainConfigurationPersister(boolean slave) {
// Store this back to environment so mgmt api that exposes it can still work
environment.setDomainConfigurationFile(domainConfigurationFile);

if (environment.getDomainConfigurationFile() != null) {
ServerLogger.CONFIG_LOGGER.serverStarting("- domain config: " + environment.getDomainConfigurationFile().getMainFile().getName() + " -");
}
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In my opinion, printing this kind of message is not under the responsibility of HostControllerConfigurationPersister.java, so this doesn't look like the correct place for it. In addition, at this point, the HC has started with an empty domain config, and describing that the Domain config is starting doesn't look correct to me.

In any case, we have to handle these messages via the loggers so they can be localized later, we should not hardcode messages that are going to get printed on the console outside of the loggers.

@@ -120,7 +120,7 @@ public void start(StartContext context) throws StartException {
//Moved to AbstractControllerService.start()
// processState.setStarting();
final ProductConfig config = environment.getProductConfig();
final String prettyVersion = config.getPrettyVersionString();
final String prettyVersion = config.getPrettyVersionString() + " - host config: " + environment.getHostConfigurationFile().getMainFile().getName() + " -";
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The same issue as described before regarding the localization. This is also modifying the prettyVersion which is printed at the end of the boot process, so we are duplicating the information. I'm not saying that's wrong, but for asking whether we want this information at the beginning and at the end. I'm not sure.

@yersan
Copy link
Collaborator

yersan commented Oct 6, 2021

Having info about domain config after host config was a bit unexpected, but maybe it's the way it should be. Or it was process controller which was started first 🤔, not sure now.

Yes, @rsvoboda it is a bit odd. It is not the process controller, the reason is the Host Controller starts first with an empty domain configuration, and later when the domain configuration is determined it prints the domain config domain.xml starting, for this reason, I was suggesting print it all at the end of the boot process, either with a successful or failed boot message.

@khermano
Copy link
Contributor Author

Hi, thank you both for your comments and sorry for the delay, I was on PTO.
@yersan I looked at it and I hope it is fine now. I will push my changes right away. Is it okay like that?

@wildfly-ci
Copy link

Core - Full Integration Build 11059 outcome was FAILURE using a merge of 7e8c873
Summary: Tests failed: 30 (30 new), passed: 7093, ignored: 143 Build time: 03:29:34

Failed tests

org.jboss.as.test.integration.domain.ExpressionSupportSmokeTestCase.test: java.util.concurrent.TimeoutException: Managed servers were not started within [120] seconds
	at org.jboss.as.test.integration.domain.management.util.DomainLifecycleUtil.awaitServers(DomainLifecycleUtil.java:560)
	at org.jboss.as.test.integration.domain.ExpressionSupportSmokeTestCase.test(ExpressionSupportSmokeTestCase.java:151)
------- Stdout: -------
 [0m09:52:11,812 INFO  [org.jboss.modules] (main) JBoss Modules version 1.12.0.Final
 [0m [0m09:52:11,983 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final
 [0m [0m09:52:11,994 INFO  [org.jboss.as.process.Host Controller.status] (main) WFLYPC0018: Starting process 'Host Controller'
 [0m[Host Controller]  [0m09:52:12,411 INFO  [org.jboss.modules] (main) JBoss Modules version 1.12.0.Final [0m
[Host Controller]  [0m [0m09:52:12,637 INFO  [org.jboss.msc] (main) JBoss MSC version 1.4.13.Final [0m
[Host Controller]  [0m [0m09:52:12,646 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final [0m
[Host Controller]  [0m [0m09:52:12,694 INFO  [org.jboss.as] (MSC service thread 1-2) WFLYSRV0049: WildFly Full 26.0.0.Beta1-SNAPSHOT (WildFly Core 18.0.0.Beta2-SNAPSHOT) starting [0m
[Host Controller]  [0m [0m09:52:13,065 INFO  [org.wildfly.security] (Host Controller Service Threads - 4) ELY00001: WildFly Elytron version 1.17.2.Final [0m
[Host Controller]  [0m [0m09:52:13,404 INFO  [org.jboss.as.host.controller] (Controller Boot Thread) WFLYHC0003: Creating http management service using network interface (management) port (9990) securePort (-1) [0m
[Host Controller]  [0m [0m09:52:13,425 INFO  [org.xnio] (MSC service thread 1-5) XNIO version 3.8.4.Final [0m
[Host Controller]  [0m [0m09:52:13,431 INFO  [org.xnio.nio] (MSC service thread 1-5) XNIO NIO Implementation Version 3.8.4.Final [0m
[Host Controller]  [0m [0m09:52:13,485 INFO  [org.jboss.as.patching] (MSC service thread 1-2) WFLYPAT0050: WildFly Full cumulative patch ID is: base, one-off patches include: none [0m
[Host Controller]  [0m [0m09:52:13,528 INFO  [org.jboss.remoting] (MSC service thread 1-6) JBoss Remoting version 5.0.23.Final [0m
[Host Controller]  [0m [0m09:52:15,182 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0025: WildFly Full 26.0.0.Beta1-SNAPSHOT (WildFly Core 18.0.0.Beta2-SNAPSHOT) (Host Controller) started in 3114ms - Started 71 of 72 services (16 services are lazy, passive or on-demand) - Host Controller configuration files in use: testing-domain8327281868368785330.xml, testing-host2512972854683887752.xml [0m
[Host Controller]  [0m [0m09:52:15,183 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0062: Http management interface listening on http://[::1]:9990/management and https://[::1]:-1/management [0m
[Host Controller]  [0m [0m09:52:15,183 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0054: Admin console is not enabled [0m
Failed operation:
{
    "operation" => "read-resource",
    "address" => [
        ("host" => "master"),
        ("core-service" => "management"),
        ("service" => "management-operations"),
        ("active-operation" => "1603904309")
    ],
    "include-defaults" => true
}
Response:
{
    "outcome" => "failed",
    "failure-description" => "WFLYCTL0216: Management resource '[
    (\"host\" => \"master\"),
    (\"core-service\" => \"management\"),
    (\"service\" => \"management-operations\"),
    (\"active-operation\" => \"1603904309\")
]' not found",
    "rolled-back" => true,
    "response-headers" => {"process-state" => "reload-required"}
}
Failed operation:
{
    "operation" => "read-resource",
    "address" => [
        ("host" => "master"),
        ("core-service" => "management"),
        ("service" => "management-operations"),
        ("active-operation" => "1603904309")


org.jboss.as.test.integration.domain.DefaultConfigSmokeTestCase.testStandardHost: java.lang.RuntimeException: Could not start container
	at org.jboss.as.test.integration.domain.management.util.DomainLifecycleUtil.start(DomainLifecycleUtil.java:295)
	at org.jboss.as.test.integration.domain.DefaultConfigSmokeTestCase.testStandardHost(DefaultConfigSmokeTestCase.java:65)
Caused by: java.util.concurrent.TimeoutException: Managed servers were not started within [120] seconds
	at org.jboss.as.test.integration.domain.management.util.DomainLifecycleUtil.awaitServers(DomainLifecycleUtil.java:560)
	at org.jboss.as.test.integration.domain.management.util.DomainLifecycleUtil.start(DomainLifecycleUtil.java:284)
	... 29 more
------- Stdout: -------
 [0m09:55:56,789 INFO  [org.jboss.modules] (main) JBoss Modules version 1.12.0.Final
 [0m [0m09:55:56,969 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final
 [0m [0m09:55:56,981 INFO  [org.jboss.as.process.Host Controller.status] (main) WFLYPC0018: Starting process 'Host Controller'
 [0m[Host Controller]  [0m09:55:57,423 INFO  [org.jboss.modules] (main) JBoss Modules version 1.12.0.Final [0m
[Host Controller]  [0m [0m09:55:57,696 INFO  [org.jboss.msc] (main) JBoss MSC version 1.4.13.Final [0m
[Host Controller]  [0m [0m09:55:57,708 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final [0m
[Host Controller]  [0m [0m09:55:57,757 INFO  [org.jboss.as] (MSC service thread 1-2) WFLYSRV0049: WildFly Full 26.0.0.Beta1-SNAPSHOT (WildFly Core 18.0.0.Beta2-SNAPSHOT) starting [0m
[Host Controller]  [0m [0m09:55:58,141 INFO  [org.wildfly.security] (Host Controller Service Threads - 4) ELY00001: WildFly Elytron version 1.17.2.Final [0m
[Host Controller]  [0m [0m09:55:58,478 INFO  [org.jboss.as.host.controller] (Controller Boot Thread) WFLYHC0003: Creating http management service using network interface (management) port (9990) securePort (-1) [0m
[Host Controller]  [0m [0m09:55:58,494 INFO  [org.xnio] (MSC service thread 1-2) XNIO version 3.8.4.Final [0m
[Host Controller]  [0m [0m09:55:58,501 INFO  [org.xnio.nio] (MSC service thread 1-2) XNIO NIO Implementation Version 3.8.4.Final [0m
[Host Controller]  [0m [0m09:55:58,580 INFO  [org.jboss.as.patching] (MSC service thread 1-7) WFLYPAT0050: WildFly Full cumulative patch ID is: base, one-off patches include: none [0m
[Host Controller]  [0m [0m09:55:58,595 INFO  [org.jboss.remoting] (MSC service thread 1-5) JBoss Remoting version 5.0.23.Final [0m
[Host Controller]  [0m [0m09:56:00,146 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0062: Http management interface listening on http://[::1]:9990/management and https://[::1]:-1/management [0m
[Host Controller]  [0m [0m09:56:00,147 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0053: Admin console listening on http://[::1]:9990 and https://[::1]:-1 [0m
[Host Controller]  [0m [0m09:56:00,225 INFO  [org.jboss.as.host.controller] (Controller Boot Thread) WFLYHC0023: Starting server server-one [0m
 [0m09:56:00,360 INFO  [org.jboss.as.process.Server:server-one.status] (ProcessController-threads - 3) WFLYPC0018: Starting process 'Server:server-one'
 [0m[Server:server-one]  [0m09:56:00,808 INFO  [org.jboss.modules] (main) JBoss Modules version 1.12.0.Final [0m
[Server:server-one]  [0m [0m09:56:01,103 INFO  [org.jboss.msc] (main) JBoss MSC version 1.4.13.Final [0m
[Server:server-one]  [0m [0m09:56:01,112 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final [0m
[Server:server-one]  [0m [0m09:56:01,233 INFO  [org.jboss.as] (MSC service thread 1-2) WFLYSRV0049: WildFly Full 26.0.0.Beta1-SNAPSHOT (WildFly Core 18.0.0.Beta2-SNAPSHOT) starting [0m
[Server:server-one]  [0m [0m09:56:01,301 INFO  [org.xnio] (MSC service thread 1-4) XNIO version 3.8.4.Final [0m
[Server:server-one]  [0m [0m09:56:01,307 INFO  [org.xnio.nio] (MSC service thread 1-4) XNIO NIO Implementation Version 3.8.4.Final [0m
[Server:server-one]  [0m [0m09:56:01,340 INFO  [org.jboss.remoting] (MSC service thread 1-3) JBoss Remoting version 5.0.23.Final [0m
[Server:server-one]  [0m [0m09:56:01,624 INFO  [org.wildfly.security] (ServerService Thread Pool -- 2) ELY00001: WildFly Elytron version 1.17.2.Final [0m
[Host Controller]  [0m [0m09:56:01,786 INFO  [org.jboss.as.host.controller] (management task-2) WFLYHC0021: Server [Server:server-one] connected using connection [Channel ID 53b16b9d (inbound) of Remoting connection 45e733de to localhost/0:0:0:0:0:0:0:1:36804 of endpoint "master:MANAGEMENT" <742443c>] [0m
[Host Controller]  [0m [0m09:56:01,813 INFO  [org.jboss.as.host.controller] (Controller Boot Thread) WFLYHC0023: Starting server server-two [0m
[Host Controller]  [0m [0m09:56:01,818 INFO  [org.jboss.as.host.controller] (server-registration-threads - 1) WFLYHC0020: Registering server server-one [0m
 [0m09:56:01,947 INFO  [org.jboss.as.process.Server:server-two.status] (ProcessController-threads - 3) WFLYPC0018: Starting process 'Server:server-two'
 [0m[Server:server-two]  [0m09:56:02,566 INFO  [org.jboss.modules] (main) JBoss Modules version 1.12.0.Final [0m
[Server:server-two]  [0m [0m09:56:02,978 INFO  [org.jboss.msc] (main) JBoss MSC version 1.4.13.Final [0m
[Server:server-two]  [0m [0m09:56:02,986 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final [0m
[Server:server-two]  [0m [0m09:56:03,225 INFO  [org.jboss.as] (MSC service thread 1-1) WFLYSRV0049: WildFly Full 26.0.0.Beta1-SNAPSHOT (WildFly Core 18.0.0.Beta2-SNAPSHOT) starting [0m
[Server:server-two]  [0m [0m09:56:03,326 INFO  [org.xnio] (MSC service thread 1-8) XNIO version 3.8.4.Final [0m
[Server:server-two]  [0m [0m09:56:03,333 INFO  [org.xnio.nio] (MSC service thread 1-8) XNIO NIO Implementation Version 3.8.4.Final [0m
[Server:server-two]  [0m [0m09:56:03,392 INFO  [org.jboss.remoting] (MSC service thread 1-1) JBoss Remoting version 5.0.23.Final [0m
[Server:server-two]  [0m [0m09:56:03,801 INFO  [org.wildfly.security] (ServerService Thread Pool -- 3) ELY00001: WildFly Elytron version 1.17.2.Final [0m
[Server:server-one]  [0m [0m09:56:04,000 INFO  [org.jboss.as.webservices] (ServerService Thread Pool -- 41) WFLYWS0002: Activating WebServices Extension [0m
[Server:server-one]  [0m [33m09:56:04,011 WARN  [org.jboss.as.txn] (ServerService Thread Pool -- 43) WFLYTX0013: The node-identifier attribute on the /subsystem=transactions is set to the default value. This is a danger for environments running multiple servers. Please make sure the attribute value is unique. [0m
[Host Controller]  [0m [0m09:56:04,043 INFO  [org.jboss.as.host.controller] (management task-2) WFLYHC0021: Server [Server:server-two] connected using connection [Channel ID 1ea7a2cd (inbound) of Remoting connection 3928bc34 to localhost/0:0:0:0:0:0:0:1:36806 of endpoint "master:MANAGEMENT" <742443c>] [0m
[Server:server-one]  [33m [0m [0m09:56:04,051 INFO  [org.wildfly.extension.undertow] (ServerService Thread Pool -- 42) WFLYUT0014: Creating file handler for path '/store/work/tc-work/37b47ae8b9c60325/full/testsuite/domain/target/wildfly/welcome-content' with options [directory-listing: 'false', follow-symlink: 'false', case-sensitive: 'true', safe-symlink-paths: '[]'] [0m
[Server:server-one]  [0m [0m09:56:04,056 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-8) WFLYUT0003: Undertow 2.2.12.Final starting [0m
[Host Controller]  [0m [0m09:56:04,074 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0025: WildFly Full 26.0.0.Beta1-SNAPSHOT (WildFly Core 18.0.0.Beta2-SNAPSHOT) (Host Controller) started in 7018ms - Started 71 of 72 services (14 services are lazy, passive or on-demand) - Host Controller configuration files in use: testing-domain2452554627854752555.xml, testing-host3784600592273638554.xml [0m


org.jboss.as.test.integration.domain.DefaultConfigSmokeTestCase.testMasterAndSlave: java.lang.RuntimeException: Could not start container
	at org.jboss.as.test.integration.domain.management.util.DomainLifecycleUtil.start(DomainLifecycleUtil.java:295)
	at org.jboss.as.test.integration.domain.DefaultConfigSmokeTestCase.testMasterAndSlave(DefaultConfigSmokeTestCase.java:87)
Caused by: java.util.concurrent.TimeoutException: Managed servers were not started within [120] seconds
	at org.jboss.as.test.integration.domain.management.util.DomainLifecycleUtil.awaitServers(DomainLifecycleUtil.java:560)
	at org.jboss.as.test.integration.domain.management.util.DomainLifecycleUtil.start(DomainLifecycleUtil.java:284)
	... 29 more
------- Stdout: -------
 [0m09:57:57,818 INFO  [org.jboss.modules] (main) JBoss Modules version 1.12.0.Final
 [0m [0m09:57:58,009 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final
 [0m [0m09:57:58,020 INFO  [org.jboss.as.process.Host Controller.status] (main) WFLYPC0018: Starting process 'Host Controller'
 [0m[Host Controller]  [0m09:57:58,451 INFO  [org.jboss.modules] (main) JBoss Modules version 1.12.0.Final [0m
[Host Controller]  [0m [0m09:57:58,681 INFO  [org.jboss.msc] (main) JBoss MSC version 1.4.13.Final [0m
[Host Controller]  [0m [0m09:57:58,690 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final [0m
[Host Controller]  [0m [0m09:57:58,737 INFO  [org.jboss.as] (MSC service thread 1-2) WFLYSRV0049: WildFly Full 26.0.0.Beta1-SNAPSHOT (WildFly Core 18.0.0.Beta2-SNAPSHOT) starting [0m
[Host Controller]  [0m [0m09:57:59,122 INFO  [org.wildfly.security] (Host Controller Service Threads - 4) ELY00001: WildFly Elytron version 1.17.2.Final [0m
[Host Controller]  [0m [0m09:57:59,449 INFO  [org.jboss.as.host.controller] (Controller Boot Thread) WFLYHC0003: Creating http management service using network interface (management) port (9990) securePort (-1) [0m
[Host Controller]  [0m [0m09:57:59,463 INFO  [org.xnio] (MSC service thread 1-3) XNIO version 3.8.4.Final [0m
[Host Controller]  [0m [0m09:57:59,469 INFO  [org.xnio.nio] (MSC service thread 1-3) XNIO NIO Implementation Version 3.8.4.Final [0m
[Host Controller]  [0m [0m09:57:59,512 INFO  [org.jboss.remoting] (MSC service thread 1-6) JBoss Remoting version 5.0.23.Final [0m
[Host Controller]  [0m [0m09:57:59,549 INFO  [org.jboss.as.patching] (MSC service thread 1-5) WFLYPAT0050: WildFly Full cumulative patch ID is: base, one-off patches include: none [0m
[Host Controller]  [0m [0m09:58:01,140 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0062: Http management interface listening on http://[::1]:9990/management and https://[::1]:-1/management [0m
[Host Controller]  [0m [0m09:58:01,141 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0053: Admin console listening on http://[::1]:9990 and https://[::1]:-1 [0m
[Host Controller]  [0m [0m09:58:01,168 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0025: WildFly Full 26.0.0.Beta1-SNAPSHOT (WildFly Core 18.0.0.Beta2-SNAPSHOT) (Host Controller) started in 3075ms - Started 71 of 71 services (13 services are lazy, passive or on-demand) - Host Controller configuration files in use: testing-domain8462943569681987333.xml, testing-host6983969057572448301.xml [0m
 [0m09:58:02,096 INFO  [org.jboss.modules] (main) JBoss Modules version 1.12.0.Final
 [0m [0m09:58:02,281 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final
 [0m [0m09:58:02,293 INFO  [org.jboss.as.process.Host Controller.status] (main) WFLYPC0018: Starting process 'Host Controller'
 [0m[Host Controller]  [0m09:58:02,726 INFO  [org.jboss.modules] (main) JBoss Modules version 1.12.0.Final [0m
[Host Controller]  [0m [0m09:58:02,959 INFO  [org.jboss.msc] (main) JBoss MSC version 1.4.13.Final [0m
[Host Controller]  [0m [0m09:58:02,968 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final [0m
[Host Controller]  [0m [0m09:58:03,014 INFO  [org.jboss.as] (MSC service thread 1-2) WFLYSRV0049: WildFly Full 26.0.0.Beta1-SNAPSHOT (WildFly Core 18.0.0.Beta2-SNAPSHOT) starting [0m
[Host Controller]  [0m [0m09:58:03,410 INFO  [org.wildfly.security] (Host Controller Service Threads - 4) ELY00001: WildFly Elytron version 1.17.2.Final [0m
[Host Controller]  [0m [0m09:58:03,740 INFO  [org.jboss.as.host.controller] (Controller Boot Thread) WFLYHC0003: Creating http management service using network interface (management) port (19990) securePort (-1) [0m
[Host Controller]  [0m [0m09:58:03,757 INFO  [org.xnio] (MSC service thread 1-6) XNIO version 3.8.4.Final [0m
[Host Controller]  [0m [0m09:58:03,765 INFO  [org.xnio.nio] (MSC service thread 1-6) XNIO NIO Implementation Version 3.8.4.Final [0m
[Host Controller]  [0m [0m09:58:03,841 INFO  [org.jboss.as.patching] (MSC service thread 1-3) WFLYPAT0050: WildFly Full cumulative patch ID is: base, one-off patches include: none [0m
[Host Controller]  [0m [0m09:58:03,867 INFO  [org.jboss.remoting] (MSC service thread 1-3) JBoss Remoting version 5.0.23.Final [0m
[Host Controller]  [0m [0m09:58:05,763 INFO  [org.jboss.as.domain.controller] (Host Controller Service Threads - 31) WFLYHC0019: Registered remote slave host "slave", JBoss WildFly Full 26.0.0.Beta1-SNAPSHOT (WildFly 18.0.0.Beta2-SNAPSHOT) [0m
[Host Controller]  [0m [0m09:58:05,765 INFO  [org.jboss.as.host.controller] (Controller Boot Thread) WFLYHC0148: Connected to master host controller at remote+http://[::1]:9990 [0m
[Host Controller]  [0m [0m09:58:05,844 INFO  [org.jboss.as.host.controller] (Controller Boot Thread) WFLYHC0023: Starting server server-one [0m
 [0m09:58:05,977 INFO  [org.jboss.as.process.Server:server-one.status] (ProcessController-threads - 3) WFLYPC0018: Starting process 'Server:server-one'
 [0m[Server:server-one]  [0m09:58:06,414 INFO  [org.jboss.modules] (main) JBoss Modules version 1.12.0.Final [0m
[Server:server-one]  [0m [0m09:58:06,721 INFO  [org.jboss.msc] (main) JBoss MSC version 1.4.13.Final [0m
[Server:server-one]  [0m [0m09:58:06,729 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final [0m
[Server:server-one]  [0m [0m09:58:06,853 INFO  [org.jboss.as] (MSC service thread 1-1) WFLYSRV0049: WildFly Full 26.0.0.Beta1-SNAPSHOT (WildFly Core 18.0.0.Beta2-SNAPSHOT) starting [0m
[Server:server-one]  [0m [0m09:58:06,922 INFO  [org.xnio] (MSC service thread 1-6) XNIO version 3.8.4.Final [0m
[Server:server-one]  [0m [0m09:58:06,929 INFO  [org.xnio.nio] (MSC service thread 1-6) XNIO NIO Implementation Version 3.8.4.Final [0m
[Server:server-one]  [0m [0m09:58:06,960 INFO  [org.jboss.remoting] (MSC service thread 1-3) JBoss Remoting version 5.0.23.Final [0m
[Server:server-one]  [0m [0m09:58:07,226 INFO  [org.wildfly.security] (ServerService Thread Pool -- 2) ELY00001: WildFly Elytron version 1.17.2.Final [0m
[Host Controller]  [0m [0m09:58:07,382 INFO  [org.jboss.as.host.controller] (management task-1) WFLYHC0021: Server [Server:server-one] connected using connection [Channel ID 4a829c13 (inbound) of Remoting connection 0b01a771 to localhost/0:0:0:0:0:0:0:1:56914 of endpoint "slave:MANAGEMENT" <6ef52c65>] [0m
[Host Controller]  [0m [0m09:58:07,408 INFO  [org.jboss.as.host.controller] (Controller Boot Thread) WFLYHC0023: Starting server server-two [0m


org.jboss.as.test.integration.domain.OrderedChildResourcesTestCase.testOrderedChildResources: java.lang.RuntimeException: Could not start container
	at org.jboss.as.test.integration.domain.management.util.DomainLifecycleUtil.start(DomainLifecycleUtil.java:295)
	at org.jboss.as.test.integration.domain.OrderedChildResourcesTestCase.testOrderedChildResources(OrderedChildResourcesTestCase.java:69)
Caused by: java.util.concurrent.TimeoutException: Managed servers were not started within [120] seconds
	at org.jboss.as.test.integration.domain.management.util.DomainLifecycleUtil.awaitServers(DomainLifecycleUtil.java:560)
	at org.jboss.as.test.integration.domain.management.util.DomainLifecycleUtil.start(DomainLifecycleUtil.java:284)
	... 29 more
------- Stdout: -------
 [0m10:00:03,035 INFO  [org.jboss.modules] (main) JBoss Modules version 1.12.0.Final
 [0m [0m10:00:03,302 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final
 [0m [0m10:00:03,317 INFO  [org.jboss.as.process.Host Controller.status] (main) WFLYPC0018: Starting process 'Host Controller'
 [0m[Host Controller]  [0m10:00:03,735 INFO  [org.jboss.modules] (main) JBoss Modules version 1.12.0.Final [0m
[Host Controller]  [0m [0m10:00:03,976 INFO  [org.jboss.msc] (main) JBoss MSC version 1.4.13.Final [0m
[Host Controller]  [0m [0m10:00:03,986 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final [0m
[Host Controller]  [0m [0m10:00:04,035 INFO  [org.jboss.as] (MSC service thread 1-2) WFLYSRV0049: WildFly Full 26.0.0.Beta1-SNAPSHOT (WildFly Core 18.0.0.Beta2-SNAPSHOT) starting [0m
[Host Controller]  [0m [0m10:00:04,468 INFO  [org.wildfly.security] (Host Controller Service Threads - 4) ELY00001: WildFly Elytron version 1.17.2.Final [0m
[Host Controller]  [0m [0m10:00:04,810 INFO  [org.jboss.as.host.controller] (Controller Boot Thread) WFLYHC0003: Creating http management service using network interface (management) port (9990) securePort (-1) [0m
[Host Controller]  [0m [0m10:00:04,825 INFO  [org.xnio] (MSC service thread 1-2) XNIO version 3.8.4.Final [0m
[Host Controller]  [0m [0m10:00:04,832 INFO  [org.xnio.nio] (MSC service thread 1-2) XNIO NIO Implementation Version 3.8.4.Final [0m
[Host Controller]  [0m [0m10:00:04,904 INFO  [org.jboss.as.patching] (MSC service thread 1-6) WFLYPAT0050: WildFly Full cumulative patch ID is: base, one-off patches include: none [0m
[Host Controller]  [0m [0m10:00:04,916 INFO  [org.jboss.remoting] (MSC service thread 1-2) JBoss Remoting version 5.0.23.Final [0m
[Host Controller]  [0m [0m10:00:06,500 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0062: Http management interface listening on http://[::1]:9990/management and https://[::1]:-1/management [0m
[Host Controller]  [0m [0m10:00:06,501 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0053: Admin console listening on http://[::1]:9990 and https://[::1]:-1 [0m
[Host Controller]  [0m [0m10:00:06,567 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0025: WildFly Full 26.0.0.Beta1-SNAPSHOT (WildFly Core 18.0.0.Beta2-SNAPSHOT) (Host Controller) started in 3175ms - Started 71 of 71 services (13 services are lazy, passive or on-demand) - Host Controller configuration files in use: testing-domain905020117823762410.xml, testing-host5715926165285507622.xml [0m
 [0m10:00:07,363 INFO  [org.jboss.modules] (main) JBoss Modules version 1.12.0.Final
 [0m [0m10:00:07,544 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final
 [0m [0m10:00:07,556 INFO  [org.jboss.as.process.Host Controller.status] (main) WFLYPC0018: Starting process 'Host Controller'
 [0m[Host Controller]  [0m10:00:07,986 INFO  [org.jboss.modules] (main) JBoss Modules version 1.12.0.Final [0m
[Host Controller]  [0m [0m10:00:08,234 INFO  [org.jboss.msc] (main) JBoss MSC version 1.4.13.Final [0m
[Host Controller]  [0m [0m10:00:08,243 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final [0m
[Host Controller]  [0m [0m10:00:08,295 INFO  [org.jboss.as] (MSC service thread 1-2) WFLYSRV0049: WildFly Full 26.0.0.Beta1-SNAPSHOT (WildFly Core 18.0.0.Beta2-SNAPSHOT) starting [0m
[Host Controller]  [0m [0m10:00:08,685 INFO  [org.wildfly.security] (Host Controller Service Threads - 4) ELY00001: WildFly Elytron version 1.17.2.Final [0m
[Host Controller]  [0m [0m10:00:09,025 INFO  [org.jboss.as.host.controller] (Controller Boot Thread) WFLYHC0003: Creating http management service using network interface (management) port (19990) securePort (-1) [0m
[Host Controller]  [0m [0m10:00:09,040 INFO  [org.xnio] (MSC service thread 1-4) XNIO version 3.8.4.Final [0m
[Host Controller]  [0m [0m10:00:09,046 INFO  [org.xnio.nio] (MSC service thread 1-4) XNIO NIO Implementation Version 3.8.4.Final [0m
[Host Controller]  [0m [0m10:00:09,113 INFO  [org.jboss.remoting] (MSC service thread 1-5) JBoss Remoting version 5.0.23.Final [0m
[Host Controller]  [0m [0m10:00:09,135 INFO  [org.jboss.as.patching] (MSC service thread 1-6) WFLYPAT0050: WildFly Full cumulative patch ID is: base, one-off patches include: none [0m
[Host Controller]  [0m [0m10:00:11,022 INFO  [org.jboss.as.domain.controller] (Host Controller Service Threads - 18) WFLYHC0019: Registered remote slave host "slave", JBoss WildFly Full 26.0.0.Beta1-SNAPSHOT (WildFly 18.0.0.Beta2-SNAPSHOT) [0m
[Host Controller]  [0m [0m10:00:11,025 INFO  [org.jboss.as.host.controller] (Controller Boot Thread) WFLYHC0148: Connected to master host controller at remote+http://[::1]:9990 [0m
[Host Controller]  [0m [0m10:00:11,098 INFO  [org.jboss.as.host.controller] (Controller Boot Thread) WFLYHC0023: Starting server server-one [0m
 [0m10:00:11,203 INFO  [org.jboss.as.process.Server:server-one.status] (ProcessController-threads - 3) WFLYPC0018: Starting process 'Server:server-one'
 [0m[Server:server-one]  [0m10:00:11,624 INFO  [org.jboss.modules] (main) JBoss Modules version 1.12.0.Final [0m
[Server:server-one]  [0m [0m10:00:11,921 INFO  [org.jboss.msc] (main) JBoss MSC version 1.4.13.Final [0m
[Server:server-one]  [0m [0m10:00:11,929 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final [0m
[Server:server-one]  [0m [0m10:00:12,040 INFO  [org.jboss.as] (MSC service thread 1-1) WFLYSRV0049: WildFly Full 26.0.0.Beta1-SNAPSHOT (WildFly Core 18.0.0.Beta2-SNAPSHOT) starting [0m
[Server:server-one]  [0m [0m10:00:12,124 INFO  [org.xnio] (MSC service thread 1-2) XNIO version 3.8.4.Final [0m
[Server:server-one]  [0m [0m10:00:12,131 INFO  [org.xnio.nio] (MSC service thread 1-2) XNIO NIO Implementation Version 3.8.4.Final [0m
[Server:server-one]  [0m [0m10:00:12,157 INFO  [org.jboss.remoting] (MSC service thread 1-8) JBoss Remoting version 5.0.23.Final [0m
[Server:server-one]  [0m [0m10:00:12,429 INFO  [org.wildfly.security] (ServerService Thread Pool -- 2) ELY00001: WildFly Elytron version 1.17.2.Final [0m
[Host Controller]  [0m [0m10:00:12,590 INFO  [org.jboss.as.host.controller] (management task-2) WFLYHC0021: Server [Server:server-one] connected using connection [Channel ID 5474ae70 (inbound) of Remoting connection 42f8f84d to localhost/0:0:0:0:0:0:0:1:57820 of endpoint "slave:MANAGEMENT" <c091170>] [0m
[Host Controller]  [0m [0m10:00:12,610 INFO  [org.jboss.as.host.controller] (Controller Boot Thread) WFLYHC0023: Starting server server-two [0m


org.jboss.as.test.integration.domain.EEConcurrencyExecutorShutdownTestCase: java.lang.RuntimeException: java.lang.RuntimeException: Could not start container
	at org.jboss.as.test.integration.domain.EEConcurrencyExecutorShutdownTestCase.createAndStartDefaultEESupport(EEConcurrencyExecutorShutdownTestCase.java:111)
	at org.jboss.as.test.integration.domain.EEConcurrencyExecutorShutdownTestCase.setupDomain(EEConcurrencyExecutorShutdownTestCase.java:89)
Caused by: java.lang.RuntimeException: Could not start container
	at org.jboss.as.test.integration.domain.management.util.DomainLifecycleUtil.start(DomainLifecycleUtil.java:295)
	at org.jboss.as.test.integration.domain.management.util.DomainTestSupport.start(DomainTestSupport.java:446)
	at org.jboss.as.test.integration.domain.EEConcurrencyExecutorShutdownTestCase.createAndStartDefaultEESupport(EEConcurrencyExecutorShutdownTestCase.java:108)
	... 21 more
Caused by: java.util.concurrent.TimeoutException: Managed servers were not started within [120] seconds
	at org.jboss.as.test.integration.domain.management.util.DomainLifecycleUtil.awaitServers(DomainLifecycleUtil.java:560)
	at org.jboss.as.test.integration.domain.management.util.DomainLifecycleUtil.start(DomainLifecycleUtil.java:284)
	... 23 more
------- Stdout: -------
 [0m10:02:13,878 INFO  [org.jboss.modules] (main) JBoss Modules version 1.12.0.Final
 [0m [0m10:02:14,072 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final
 [0m [0m10:02:14,085 INFO  [org.jboss.as.process.Host Controller.status] (main) WFLYPC0018: Starting process 'Host Controller'
 [0m[Host Controller]  [0m10:02:14,532 INFO  [org.jboss.modules] (main) JBoss Modules version 1.12.0.Final [0m
[Host Controller]  [0m [0m10:02:14,790 INFO  [org.jboss.msc] (main) JBoss MSC version 1.4.13.Final [0m
[Host Controller]  [0m [0m10:02:14,801 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final [0m
[Host Controller]  [0m [0m10:02:14,855 INFO  [org.jboss.as] (MSC service thread 1-3) WFLYSRV0049: WildFly Full 26.0.0.Beta1-SNAPSHOT (WildFly Core 18.0.0.Beta2-SNAPSHOT) starting [0m
[Host Controller]  [0m [0m10:02:15,325 INFO  [org.wildfly.security] (Host Controller Service Threads - 2) ELY00001: WildFly Elytron version 1.17.2.Final [0m
[Host Controller]  [0m [0m10:02:15,700 INFO  [org.jboss.as.host.controller] (Controller Boot Thread) WFLYHC0003: Creating http management service using network interface (management) port (9990) securePort (-1) [0m
[Host Controller]  [0m [0m10:02:15,703 INFO  [org.xnio] (MSC service thread 1-6) XNIO version 3.8.4.Final [0m
[Host Controller]  [0m [0m10:02:15,711 INFO  [org.xnio.nio] (MSC service thread 1-6) XNIO NIO Implementation Version 3.8.4.Final [0m
[Host Controller]  [0m [0m10:02:15,771 INFO  [org.jboss.remoting] (MSC service thread 1-3) JBoss Remoting version 5.0.23.Final [0m
[Host Controller]  [0m [0m10:02:15,797 INFO  [org.jboss.as.patching] (MSC service thread 1-4) WFLYPAT0050: WildFly Full cumulative patch ID is: base, one-off patches include: none [0m
[Host Controller]  [0m [0m10:02:15,808 INFO  [org.jboss.as.remoting] (MSC service thread 1-1) WFLYRMT0001: Listening on [::1]:9999 [0m
[Host Controller]  [0m [33m10:02:16,390 WARN  [org.jboss.as.clustering.infinispan] (Controller Boot Thread) WFLYCLINF0004: The 'strategy' attribute of the 'eviction' element is no longer supported and will be ignored [0m
[Host Controller]  [33m [0m [33m10:02:16,390 WARN  [org.jboss.as.clustering.infinispan] (Controller Boot Thread) WFLYCLINF0004: The 'strategy' attribute of the 'eviction' element is no longer supported and will be ignored [0m
[Host Controller]  [33m [0m [33m10:02:16,391 WARN  [org.jboss.as.clustering.infinispan] (Controller Boot Thread) WFLYCLINF0004: The 'strategy' attribute of the 'eviction' element is no longer supported and will be ignored [0m
[Host Controller]  [33m [0m [33m10:02:16,405 WARN  [org.jboss.as.jmx] (Controller Boot Thread) WFLYJMX0006: <jmx-connector/> is no longer supporting. <remoting-connector/> should be used instead to allow remote connections via JBoss Remoting. [0m
[Host Controller]  [33m [0m [33m10:02:16,428 WARN  [org.jboss.as.clustering.infinispan] (Controller Boot Thread) WFLYCLINF0004: The 'strategy' attribute of the 'eviction' element is no longer supported and will be ignored [0m
[Host Controller]  [33m [0m [33m10:02:16,428 WARN  [org.jboss.as.clustering.infinispan] (Controller Boot Thread) WFLYCLINF0004: The 'strategy' attribute of the 'eviction' element is no longer supported and will be ignored [0m
[Host Controller]  [33m [0m [33m10:02:16,429 WARN  [org.jboss.as.clustering.infinispan] (Controller Boot Thread) WFLYCLINF0004: The 'strategy' attribute of the 'eviction' element is no longer supported and will be ignored [0m
[Host Controller]  [33m [0m [33m10:02:16,449 WARN  [org.jboss.as.jmx] (Controller Boot Thread) WFLYJMX0006: <jmx-connector/> is no longer supporting. <remoting-connector/> should be used instead to allow remote connections via JBoss Remoting. [0m
[Host Controller]  [33m [0m [33m10:02:16,881 WARN  [org.jboss.as.clustering.infinispan] (Controller Boot Thread) WFLYCLINF0033: Attribute 'marshaller' is configured to use a deprecated value: LEGACY; use one of the following values instead: [JBOSS, PROTOSTREAM] [0m
[Host Controller]  [33m [0m [33m10:02:16,888 WARN  [org.jboss.as.clustering.infinispan] (Controller Boot Thread) WFLYCLINF0033: Attribute 'marshaller' is configured to use a deprecated value: LEGACY; use one of the following values instead: [JBOSS, PROTOSTREAM] [0m
[Host Controller]  [33m [0m [33m10:02:16,891 WARN  [org.jboss.as.clustering.infinispan] (Controller Boot Thread) WFLYCLINF0033: Attribute 'marshaller' is configured to use a deprecated value: LEGACY; use one of the following values instead: [JBOSS, PROTOSTREAM] [0m
[Host Controller]  [33m [0m [33m10:02:16,946 WARN  [org.jboss.as.clustering.infinispan] (Controller Boot Thread) WFLYCLINF0033: Attribute 'marshaller' is configured to use a deprecated value: LEGACY; use one of the following values instead: [JBOSS, PROTOSTREAM] [0m
[Host Controller]  [33m [0m [33m10:02:16,947 WARN  [org.jboss.as.clustering.infinispan] (Controller Boot Thread) WFLYCLINF0033: Attribute 'marshaller' is configured to use a deprecated value: LEGACY; use one of the following values instead: [JBOSS, PROTOSTREAM] [0m
[Host Controller]  [33m [0m [33m10:02:16,957 WARN  [org.jboss.as.clustering.infinispan] (Controller Boot Thread) WFLYCLINF0033: Attribute 'marshaller' is configured to use a deprecated value: LEGACY; use one of the following values instead: [JBOSS, PROTOSTREAM] [0m
[Host Controller]  [33m [0m [0m10:02:16,961 INFO  [org.jboss.as.controller.management-deprecated] (Controller Boot Thread) WFLYCTL0028: Attribute 'default-stack' in the resource at address '/profile=other/subsystem=jgroups' is deprecated, and may be removed in a future version. See the attribute description in the output of the read-resource-description operation to learn more about the deprecation. [0m
[Host Controller]  [0m [0m10:02:17,118 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0062: Http management interface listening on http://[::1]:9990/management and https://[::1]:-1/management [0m
[Host Controller]  [0m [0m10:02:17,118 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0053: Admin console listening on http://[::1]:9990 and https://[::1]:-1 [0m
[Host Controller]  [0m [0m10:02:17,165 INFO  [org.jboss.as.host.controller] (Controller Boot Thread) WFLYHC0023: Starting server main-one [0m
 [0m10:02:17,298 INFO  [org.jboss.as.process.Server:main-one.status] (ProcessController-threads - 3) WFLYPC0018: Starting process 'Server:main-one'
 [0m[Server:main-one]  [0m10:02:17,774 INFO  [org.jboss.modules] (main) JBoss Modules version 1.12.0.Final [0m
[Server:main-one]  [0m [0m10:02:18,068 INFO  [org.jboss.msc] (main) JBoss MSC version 1.4.13.Final [0m
[Server:main-one]  [0m [0m10:02:18,077 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final [0m
[Server:main-one]  [0m [0m10:02:18,198 INFO  [org.jboss.as] (MSC service thread 1-1) WFLYSRV0049: WildFly Full 26.0.0.Beta1-SNAPSHOT (WildFly Core 18.0.0.Beta2-SNAPSHOT) starting [0m
[Server:main-one]  [0m [0m10:02:18,274 INFO  [org.xnio] (MSC service thread 1-7) XNIO version 3.8.4.Final [0m


org.jboss.as.test.integration.domain.suites.CLITestSuite: java.lang.RuntimeException: java.lang.RuntimeException: java.lang.RuntimeException: Could not start container
	at org.jboss.as.test.integration.domain.suites.CLITestSuite.start(CLITestSuite.java:89)
	at org.jboss.as.test.integration.domain.suites.CLITestSuite.initSuite(CLITestSuite.java:103)
Caused by: java.lang.RuntimeException: java.lang.RuntimeException: Could not start container
	at org.jboss.as.test.integration.domain.management.util.DomainTestSupport.createAndStartDefaultSupport(DomainTestSupport.java:100)
	at org.jboss.as.test.integration.domain.suites.CLITestSuite.start(CLITestSuite.java:87)
	... 21 more
Caused by: java.lang.RuntimeException: Could not start container
	at org.jboss.as.test.integration.domain.management.util.DomainLifecycleUtil.start(DomainLifecycleUtil.java:295)
	at org.jboss.as.test.integration.domain.management.util.DomainTestSupport.start(DomainTestSupport.java:446)
	at org.jboss.as.test.integration.domain.management.util.DomainTestSupport.createAndStartDefaultSupport(DomainTestSupport.java:97)
	... 22 more
Caused by: java.util.concurrent.TimeoutException: Managed servers were not started within [120] seconds
	at org.jboss.as.test.integration.domain.management.util.DomainLifecycleUtil.awaitServers(DomainLifecycleUtil.java:560)
	at org.jboss.as.test.integration.domain.management.util.DomainLifecycleUtil.start(DomainLifecycleUtil.java:284)
	... 24 more
------- Stdout: -------
 [0m10:04:14,000 INFO  [org.jboss.modules] (main) JBoss Modules version 1.12.0.Final
 [0m [0m10:04:14,245 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final
 [0m [0m10:04:14,263 INFO  [org.jboss.as.process.Host Controller.status] (main) WFLYPC0018: Starting process 'Host Controller'
 [0m[Host Controller]  [0m10:04:14,690 INFO  [org.jboss.modules] (main) JBoss Modules version 1.12.0.Final [0m
[Host Controller]  [0m [0m10:04:14,919 INFO  [org.jboss.msc] (main) JBoss MSC version 1.4.13.Final [0m
[Host Controller]  [0m [0m10:04:14,928 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final [0m
[Host Controller]  [0m [0m10:04:14,974 INFO  [org.jboss.as] (MSC service thread 1-2) WFLYSRV0049: WildFly Full 26.0.0.Beta1-SNAPSHOT (WildFly Core 18.0.0.Beta2-SNAPSHOT) starting [0m
[Host Controller]  [0m [0m10:04:15,359 INFO  [org.wildfly.security] (Host Controller Service Threads - 2) ELY00001: WildFly Elytron version 1.17.2.Final [0m
[Host Controller]  [0m [0m10:04:15,710 INFO  [org.jboss.as.host.controller] (Controller Boot Thread) WFLYHC0003: Creating http management service using network interface (management) port (9990) securePort (-1) [0m
[Host Controller]  [0m [0m10:04:15,715 INFO  [org.xnio] (MSC service thread 1-7) XNIO version 3.8.4.Final [0m
[Host Controller]  [0m [0m10:04:15,726 INFO  [org.xnio.nio] (MSC service thread 1-7) XNIO NIO Implementation Version 3.8.4.Final [0m
[Host Controller]  [0m [0m10:04:15,790 INFO  [org.jboss.as.patching] (MSC service thread 1-2) WFLYPAT0050: WildFly Full cumulative patch ID is: base, one-off patches include: none [0m
[Host Controller]  [0m [0m10:04:15,792 INFO  [org.jboss.remoting] (MSC service thread 1-8) JBoss Remoting version 5.0.23.Final [0m
[Host Controller]  [0m [31m10:04:15,816 ERROR [org.jboss.msc.service.fail] (MSC service thread 1-4) MSC000001: Failed to start service jboss.remoting.server.management: org.jboss.msc.service.StartException in service jboss.remoting.server.management: WFLYRMT0004: Address already in use [::1]:9999 [0m
[Host Controller]  [31m	at org.jboss.as.remoting.AbstractStreamServerService.start(AbstractStreamServerService.java:131) [0m
[Host Controller]  [31m	at org.jboss.msc.service.ServiceControllerImpl$StartTask.startService(ServiceControllerImpl.java:1739) [0m
[Host Controller]  [31m	at org.jboss.msc.service.ServiceControllerImpl$StartTask.execute(ServiceControllerImpl.java:1701) [0m
[Host Controller]  [31m	at org.jboss.msc.service.ServiceControllerImpl$ControllerTask.run(ServiceControllerImpl.java:1559) [0m
[Host Controller]  [31m	at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) [0m
[Host Controller]  [31m	at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:1990) [0m
[Host Controller]  [31m	at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1486) [0m
[Host Controller]  [31m	at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1377) [0m
[Host Controller]  [31m	at java.lang.Thread.run(Thread.java:748) [0m
[Host Controller]  [31mCaused by: java.net.BindException: Address already in use [0m
[Host Controller]  [31m	at sun.nio.ch.Net.bind0(Native Method) [0m
[Host Controller]  [31m	at sun.nio.ch.Net.bind(Net.java:461) [0m
[Host Controller]  [31m	at sun.nio.ch.Net.bind(Net.java:453) [0m
[Host Controller]  [31m	at sun.nio.ch.ServerSocketChannelImpl.bind(ServerSocketChannelImpl.java:222) [0m
[Host Controller]  [31m	at sun.nio.ch.ServerSocketAdaptor.bind(ServerSocketAdaptor.java:85) [0m
[Host Controller]  [31m	at sun.nio.ch.ServerSocketAdaptor.bind(ServerSocketAdaptor.java:78) [0m
[Host Controller]  [31m	at org.xnio.nio.NioXnioWorker.createTcpConnectionServer(NioXnioWorker.java:180) [0m
[Host Controller]  [31m	at org.xnio.XnioWorker.createStreamConnectionServer(XnioWorker.java:310) [0m
[Host Controller]  [31m	at org.jboss.remoting3.remote.RemoteConnectionProvider$ProviderInterface.createServer(RemoteConnectionProvider.java:372) [0m
[Host Controller]  [31m	at org.jboss.as.remoting.AbstractStreamServerService.start(AbstractStreamServerService.java:122) [0m


org.jboss.as.test.integration.domain.suites.DomainTestSuite: java.lang.RuntimeException: java.lang.RuntimeException: java.lang.RuntimeException: Could not start container
	at org.jboss.as.test.integration.domain.suites.DomainTestSuite.start(DomainTestSuite.java:73)
	at org.jboss.as.test.integration.domain.suites.DomainTestSuite.beforeClass(DomainTestSuite.java:87)
Caused by: java.lang.RuntimeException: java.lang.RuntimeException: Could not start container
	at org.jboss.as.test.integration.domain.management.util.DomainTestSupport.createAndStartDefaultSupport(DomainTestSupport.java:100)
	at org.jboss.as.test.integration.domain.suites.DomainTestSuite.start(DomainTestSuite.java:71)
	... 21 more
Caused by: java.lang.RuntimeException: Could not start container
	at org.jboss.as.test.integration.domain.management.util.DomainLifecycleUtil.start(DomainLifecycleUtil.java:295)
	at org.jboss.as.test.integration.domain.management.util.DomainTestSupport.start(DomainTestSupport.java:446)
	at org.jboss.as.test.integration.domain.management.util.DomainTestSupport.createAndStartDefaultSupport(DomainTestSupport.java:97)
	... 22 more
Caused by: java.util.concurrent.TimeoutException: Managed servers were not started within [120] seconds
	at org.jboss.as.test.integration.domain.management.util.DomainLifecycleUtil.awaitServers(DomainLifecycleUtil.java:560)
	at org.jboss.as.test.integration.domain.management.util.DomainLifecycleUtil.start(DomainLifecycleUtil.java:284)
	... 24 more
------- Stdout: -------
 [0m10:04:17,060 INFO  [org.jboss.modules] (main) JBoss Modules version 1.12.0.Final
 [0m [0m10:04:17,237 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final
 [0m [0m10:04:17,248 INFO  [org.jboss.as.process.Host Controller.status] (main) WFLYPC0018: Starting process 'Host Controller'
 [0m[Host Controller]  [0m10:04:17,679 INFO  [org.jboss.modules] (main) JBoss Modules version 1.12.0.Final [0m
[Host Controller]  [0m [0m10:04:17,928 INFO  [org.jboss.msc] (main) JBoss MSC version 1.4.13.Final [0m
[Host Controller]  [0m [0m10:04:17,938 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final [0m
[Host Controller]  [0m [0m10:04:17,986 INFO  [org.jboss.as] (MSC service thread 1-2) WFLYSRV0049: WildFly Full 26.0.0.Beta1-SNAPSHOT (WildFly Core 18.0.0.Beta2-SNAPSHOT) starting [0m
[Host Controller]  [0m [0m10:04:18,372 INFO  [org.wildfly.security] (Host Controller Service Threads - 2) ELY00001: WildFly Elytron version 1.17.2.Final [0m
[Host Controller]  [0m [0m10:04:18,722 INFO  [org.jboss.as.host.controller] (Controller Boot Thread) WFLYHC0003: Creating http management service using network interface (management) port (9990) securePort (-1) [0m
[Host Controller]  [0m [0m10:04:18,726 INFO  [org.xnio] (MSC service thread 1-8) XNIO version 3.8.4.Final [0m
[Host Controller]  [0m [0m10:04:18,733 INFO  [org.xnio.nio] (MSC service thread 1-8) XNIO NIO Implementation Version 3.8.4.Final [0m
[Host Controller]  [0m [0m10:04:18,795 INFO  [org.jboss.remoting] (MSC service thread 1-8) JBoss Remoting version 5.0.23.Final [0m
[Host Controller]  [0m [0m10:04:18,813 INFO  [org.jboss.as.patching] (MSC service thread 1-6) WFLYPAT0050: WildFly Full cumulative patch ID is: base, one-off patches include: none [0m
[Host Controller]  [0m [31m10:04:18,819 ERROR [org.jboss.msc.service.fail] (MSC service thread 1-5) MSC000001: Failed to start service jboss.remoting.server.management: org.jboss.msc.service.StartException in service jboss.remoting.server.management: WFLYRMT0004: Address already in use [::1]:9999 [0m
[Host Controller]  [31m	at org.jboss.as.remoting.AbstractStreamServerService.start(AbstractStreamServerService.java:131) [0m
[Host Controller]  [31m	at org.jboss.msc.service.ServiceControllerImpl$StartTask.startService(ServiceControllerImpl.java:1739) [0m
[Host Controller]  [31m	at org.jboss.msc.service.ServiceControllerImpl$StartTask.execute(ServiceControllerImpl.java:1701) [0m
[Host Controller]  [31m	at org.jboss.msc.service.ServiceControllerImpl$ControllerTask.run(ServiceControllerImpl.java:1559) [0m
[Host Controller]  [31m	at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) [0m
[Host Controller]  [31m	at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:1990) [0m
[Host Controller]  [31m	at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1486) [0m
[Host Controller]  [31m	at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1377) [0m
[Host Controller]  [31m	at java.lang.Thread.run(Thread.java:748) [0m
[Host Controller]  [31mCaused by: java.net.BindException: Address already in use [0m
[Host Controller]  [31m	at sun.nio.ch.Net.bind0(Native Method) [0m
[Host Controller]  [31m	at sun.nio.ch.Net.bind(Net.java:461) [0m
[Host Controller]  [31m	at sun.nio.ch.Net.bind(Net.java:453) [0m
[Host Controller]  [31m	at sun.nio.ch.ServerSocketChannelImpl.bind(ServerSocketChannelImpl.java:222) [0m
[Host Controller]  [31m	at sun.nio.ch.ServerSocketAdaptor.bind(ServerSocketAdaptor.java:85) [0m
[Host Controller]  [31m	at sun.nio.ch.ServerSocketAdaptor.bind(ServerSocketAdaptor.java:78) [0m
[Host Controller]  [31m	at org.xnio.nio.NioXnioWorker.createTcpConnectionServer(NioXnioWorker.java:180) [0m
[Host Controller]  [31m	at org.xnio.XnioWorker.createStreamConnectionServer(XnioWorker.java:310) [0m
[Host Controller]  [31m	at org.jboss.remoting3.remote.RemoteConnectionProvider$ProviderInterface.createServer(RemoteConnectionProvider.java:372) [0m
[Host Controller]  [31m	at org.jboss.as.remoting.AbstractStreamServerService.start(AbstractStreamServerService.java:122) [0m


org.jboss.as.test.integration.domain.mixed.eap740.MixedDomainOverlay740TestSuite: org.jboss.as.test.integration.domain.mixed.eap740.MixedDomainDeploymentOverlay740TestCase.testInstallAndOverlayDeploymentOnDC: java.lang.AssertionError: {"outcome" : "failed", "failure-description" : {"domain-failure-description" : "WFLYDC0098: The following servers [server-one] are starting; execution of remote management operations is not currently available"}, "rolled-back" : true}
	at org.jboss.as.test.integration.domain.mixed.MixedDeploymentOverlayTestCase.executeAsyncForResult(MixedDeploymentOverlayTestCase.java:270)
	at org.jboss.as.test.integration.domain.mixed.MixedDeploymentOverlayTestCase.testInstallAndOverlayDeploymentOnDC(MixedDeploymentOverlayTestCase.java:144)
------- Stdout: -------
 [0m10:05:41,622 INFO  [org.jboss.modules] (main) JBoss Modules version 1.12.0.Final
 [0m [0m10:05:41,806 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final
 [0m [0m10:05:41,817 INFO  [org.jboss.as.process.Host Controller.status] (main) WFLYPC0018: Starting process 'Host Controller'
 [0m[Host Controller]  [0m10:05:42,239 INFO  [org.jboss.modules] (main) JBoss Modules version 1.12.0.Final [0m
[Host Controller]  [0m [0m10:05:42,488 INFO  [org.jboss.msc] (main) JBoss MSC version 1.4.13.Final [0m
[Host Controller]  [0m [0m10:05:42,497 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final [0m
[Host Controller]  [0m [0m10:05:42,545 INFO  [org.jboss.as] (MSC service thread 1-2) WFLYSRV0049: WildFly Full 26.0.0.Beta1-SNAPSHOT (WildFly Core 18.0.0.Beta2-SNAPSHOT) starting [0m
[Host Controller]  [0m [0m10:05:42,911 INFO  [org.wildfly.security] (Host Controller Service Threads - 2) ELY00001: WildFly Elytron version 1.17.2.Final [0m
[Host Controller]  [0m [0m10:05:43,212 INFO  [org.jboss.as.controller.management-deprecated] (Controller Boot Thread) WFLYCTL0028: Attribute 'permgen-size' in the resource at address '/host=master/jvm=default' is deprecated, and may be removed in a future version. See the attribute description in the output of the read-resource-description operation to learn more about the deprecation. [0m
[Host Controller]  [0m [0m10:05:43,212 INFO  [org.jboss.as.controller.management-deprecated] (Controller Boot Thread) WFLYCTL0028: Attribute 'max-permgen-size' in the resource at address '/host=master/jvm=default' is deprecated, and may be removed in a future version. See the attribute description in the output of the read-resource-description operation to learn more about the deprecation. [0m
[Host Controller]  [0m [0m10:05:43,246 INFO  [org.jboss.as.host.controller] (Controller Boot Thread) WFLYHC0003: Creating http management service using network interface (management) port (9990) securePort (-1) [0m
[Host Controller]  [0m [0m10:05:43,249 INFO  [org.xnio] (MSC service thread 1-1) XNIO version 3.8.4.Final [0m
[Host Controller]  [0m [0m10:05:43,255 INFO  [org.xnio.nio] (MSC service thread 1-1) XNIO NIO Implementation Version 3.8.4.Final [0m
[Host Controller]  [0m [0m10:05:43,304 INFO  [org.jboss.remoting] (MSC service thread 1-6) JBoss Remoting version 5.0.23.Final [0m
[Host Controller]  [0m [0m10:05:43,319 INFO  [org.jboss.as.patching] (MSC service thread 1-7) WFLYPAT0050: WildFly Full cumulative patch ID is: base, one-off patches include: none [0m
[Host Controller]  [0m [0m10:05:43,335 INFO  [org.jboss.as.remoting] (MSC service thread 1-3) WFLYRMT0001: Listening on [::1]:9999 [0m
[Host Controller]  [0m [33m10:05:43,772 WARN  [org.jboss.as.controller] (Controller Boot Thread) WFLYCTL0456: System property "java.net.preferIPv4Stack" is already set in the <system-properties> section of the configuration file. The value set in the command line will be overridden by that value. [0m
[Host Controller]  [33m [0m [0m10:05:44,766 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0025: WildFly Full 26.0.0.Beta1-SNAPSHOT (WildFly Core 18.0.0.Beta2-SNAPSHOT) (Host Controller) started in 2871ms - Started 68 of 71 services (17 services are lazy, passive or on-demand) - Host Controller configuration files in use: testing-domain.xml, testing-host.xml [0m
[Host Controller]  [0m [0m10:05:44,767 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0062: Http management interface listening on http://[::1]:9990/management and https://[::1]:-1/management [0m
[Host Controller]  [0m [0m10:05:44,767 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0054: Admin console is not enabled [0m
Failed operation:
{
    "operation" => "read-resource",
    "address" => [
        ("profile" => "default"),
        ("subsystem" => "opentelemetry")
    ]
}
Response:
{
    "outcome" => "failed",
    "failure-description" => "WFLYCTL0030: No resource definition is registered for address [
    (\"profile\" => \"default\"),
    (\"subsystem\" => \"opentelemetry\")
]",
    "rolled-back" => true
}
Failed operation:
{
    "operation" => "read-resource",
    "address" => [("extension" => "org.wildfly.extension.opentelemetry")]
}
Response:
{
    "outcome" => "failed",
    "failure-description" => "WFLYCTL0216: Management resource '[(\"extension\" => \"org.wildfly.extension.opentelemetry\")]' not found",
    "rolled-back" => true


org.jboss.as.test.integration.domain.mixed.eap740.KernelBehavior740TestSuite: org.jboss.as.test.integration.domain.mixed.eap740.WildcardReads740TestCase.testAllHostsAllServersReadInterfaceDescription:     "outcome" => "failed",
    "result" => [{
        "address" => [
            ("host" => "master"),
            ("server" => "server-one"),
            ("interface" => "public")
        ],
        "outcome" => "failed",
        "result" => undefined
    }],
    "rolled-back" => true
} expected:<[success]> but was:<[failed]>
{
    "outcome" => "failed",
    "result" => [{
        "address" => [
            ("host" => "master"),
            ("server" => "server-one"),
            ("interface" => "public")
        ],
        "outcome" => "failed",
        "result" => undefined
    }],
    "rolled-back" => true
} expected:<[success]> but was:<[failed]>
	at org.jboss.as.test.integration.domain.mixed.WildcardReadsTestCase.executeForResult(WildcardReadsTestCase.java:681)
	at org.jboss.as.test.integration.domain.mixed.WildcardReadsTestCase.executeForResult(WildcardReadsTestCase.java:675)
	at org.jboss.as.test.integration.domain.mixed.WildcardReadsTestCase.testAllHostsAllServersReadInterfaceDescription(WildcardReadsTestCase.java:271)
------- Stdout: -------
[Host Controller]  [0m [0m10:07:33,694 INFO  [org.jboss.as.domain.controller] (management task-2) WFLYHC0026: Unregistered remote slave host "slave" [0m
 [0m10:07:34,923 INFO  [org.jboss.modules] (main) JBoss Modules version 1.12.0.Final
 [0m [0m10:07:35,105 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final
 [0m [0m10:07:35,118 INFO  [org.jboss.as.process.Host Controller.status] (main) WFLYPC0018: Starting process 'Host Controller'
 [0m[Host Controller]  [0m10:07:35,539 INFO  [org.jboss.modules] (main) JBoss Modules version 1.12.0.Final [0m
[Host Controller]  [0m [0m10:07:35,789 INFO  [org.jboss.msc] (main) JBoss MSC version 1.4.13.Final [0m
[Host Controller]  [0m [0m10:07:35,799 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final [0m
[Host Controller]  [0m [0m10:07:35,848 INFO  [org.jboss.as] (MSC service thread 1-1) WFLYSRV0049: WildFly Full 26.0.0.Beta1-SNAPSHOT (WildFly Core 18.0.0.Beta2-SNAPSHOT) starting [0m
[Host Controller]  [0m [0m10:07:36,234 INFO  [org.wildfly.security] (Host Controller Service Threads - 2) ELY00001: WildFly Elytron version 1.17.2.Final [0m
[Host Controller]  [0m [0m10:07:36,536 INFO  [org.jboss.as.controller.management-deprecated] (Controller Boot Thread) WFLYCTL0028: Attribute 'permgen-size' in the resource at address '/host=master/jvm=default' is deprecated, and may be removed in a future version. See the attribute description in the output of the read-resource-description operation to learn more about the deprecation. [0m
[Host Controller]  [0m [0m10:07:36,537 INFO  [org.jboss.as.controller.management-deprecated] (Controller Boot Thread) WFLYCTL0028: Attribute 'max-permgen-size' in the resource at address '/host=master/jvm=default' is deprecated, and may be removed in a future version. See the attribute description in the output of the read-resource-description operation to learn more about the deprecation. [0m
[Host Controller]  [0m [0m10:07:36,572 INFO  [org.jboss.as.host.controller] (Controller Boot Thread) WFLYHC0003: Creating http management service using network interface (management) port (9990) securePort (-1) [0m
[Host Controller]  [0m [0m10:07:36,575 INFO  [org.xnio] (MSC service thread 1-2) XNIO version 3.8.4.Final [0m
[Host Controller]  [0m [0m10:07:36,583 INFO  [org.xnio.nio] (MSC service thread 1-2) XNIO NIO Implementation Version 3.8.4.Final [0m
[Host Controller]  [0m [0m10:07:36,628 INFO  [org.jboss.remoting] (MSC service thread 1-1) JBoss Remoting version 5.0.23.Final [0m
[Host Controller]  [0m [0m10:07:36,643 INFO  [org.jboss.as.patching] (MSC service thread 1-5) WFLYPAT0050: WildFly Full cumulative patch ID is: base, one-off patches include: none [0m
[Host Controller]  [0m [0m10:07:36,666 INFO  [org.jboss.as.remoting] (MSC service thread 1-3) WFLYRMT0001: Listening on [::1]:9999 [0m
[Host Controller]  [0m [0m10:07:36,907 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0062: Http management interface listening on http://[::1]:9990/management and https://[::1]:-1/management [0m
[Host Controller]  [0m [0m10:07:36,908 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0053: Admin console listening on http://[::1]:9990 and https://[::1]:-1 [0m
[Host Controller]  [0m [0m10:07:36,939 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0025: WildFly Full 26.0.0.Beta1-SNAPSHOT (WildFly Core 18.0.0.Beta2-SNAPSHOT) (Host Controller) started in 1743ms - Started 68 of 71 services (15 services are lazy, passive or on-demand) - Host Controller configuration files in use: testing-domain-minimal.xml, testing-host.xml [0m
 [0m10:07:37,897 INFO  [org.jboss.modules] (main) JBoss Modules version 1.11.0.Final-redhat-00001
 [0m [0m10:07:38,086 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final-redhat-00001


org.jboss.as.test.integration.domain.mixed.eap740.KernelBehavior740TestSuite: org.jboss.as.test.integration.domain.mixed.eap740.WildcardReads740TestCase.testAllHostsAllServersReadRootDescription: java.lang.AssertionError: Could not start master/server-one
	at org.jboss.as.test.integration.domain.mixed.WildcardReadsTestCase.init(WildcardReadsTestCase.java:116)


org.jboss.as.test.integration.domain.mixed.eap740.KernelBehavior740TestSuite: org.jboss.as.test.integration.domain.mixed.eap740.WildcardReads740TestCase.testSpecificHostServerRootQuery: java.lang.AssertionError: Could not start master/server-one
	at org.jboss.as.test.integration.domain.mixed.WildcardReadsTestCase.init(WildcardReadsTestCase.java:116)



##### there are 20 more failed tests, see build details

Copy link
Collaborator

@yersan yersan left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@jmesnil / @bstansberry It would be great if you can add your opinion on the message format since we plan to modify a well known message adding more information; e.g:

[org.jboss.as] (Controller Boot Thread) WFLYSRV0025: WildFly Full 26.0.0.Beta1-SNAPSHOT (WildFly Core 18.0.0.Beta2-SNAPSHOT) (Host Controller) started in 2325ms - Started 71 of 71 services (13 services are lazy, passive or on-demand) - Host Controller configuration files in use: domain.xml, host-master.xml

can be considered too long, my only doubt is whether we should split it into two. The motivation is there will be a feature incoming that will use an alias for the configuration files, so it would be nice to see on the default console the name of the file in use.

@@ -104,10 +104,18 @@ private void done(final long bootstrapTime, final StabilityStatistics statistics
final int problem = statistics.getProblemsCount();
final int started = statistics.getStartedCount();
if (failed == 0 && problem == 0) {
ServerLogger.AS_ROOT_LOGGER.startedClean(prettyVersion, bootstrapTime, started, active + passive + onDemand + never + lazy, onDemand + passive + lazy);
if (isHostController) {
ServerLogger.AS_ROOT_LOGGER.startedClean(prettyVersion, bootstrapTime, started, active + passive + onDemand + never + lazy, onDemand + passive + lazy, "Host Controller configuration files in use: " + configFiles);
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"Host Controller configuration files in use: "

This text must be in the ServerLogger itself. The point is the ServerLogger texts are translated to different languages, we have to avoid to hardcode texts outside of these loggers if that text is going to be printed by default to the standard output.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you for this info :) So I will create 6 new messages in total - 3 for startedClean (HC master, HC slave and standalone configuration) and 3 for startedWithErrors (same as before).

@@ -897,7 +897,8 @@ public void execute(OperationContext context, ModelNode operation) throws Operat
Notification notification = new Notification(ModelDescriptionConstants.BOOT_COMPLETE_NOTIFICATION, PathAddress.pathAddress(PathElement.pathElement(CORE_SERVICE, MANAGEMENT),
PathElement.pathElement(SERVICE, MANAGEMENT_OPERATIONS)), ControllerLogger.MGMT_OP_LOGGER.bootComplete());
getNotificationSupport().emit(notification);
bootstrapListener.printBootStatistics();
bootstrapListener.printBootStatistics(true, environment.getDomainConfigurationFile().getMainFile().getName()
+ ", " + environment.getHostConfigurationFile().getMainFile().getName());
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Wouldn't it be better to pass a variable argument and leave the format, in this case, separated by ", " to the logger itself?

I feel how the files will be printed is the responsibility of the logger message and not to the argument passed by to the printBootStatistics()

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sure I can do that but it will mean that I have to create 6 messages instead of 4 as I meantioned before, because the message would take more paramaters which I would probably sent in list, I think it would be easier if I'll push my changes so you could see what I mean.

@@ -897,7 +897,8 @@ public void execute(OperationContext context, ModelNode operation) throws Operat
Notification notification = new Notification(ModelDescriptionConstants.BOOT_COMPLETE_NOTIFICATION, PathAddress.pathAddress(PathElement.pathElement(CORE_SERVICE, MANAGEMENT),
PathElement.pathElement(SERVICE, MANAGEMENT_OPERATIONS)), ControllerLogger.MGMT_OP_LOGGER.bootComplete());
getNotificationSupport().emit(notification);
bootstrapListener.printBootStatistics();
bootstrapListener.printBootStatistics(true, environment.getDomainConfigurationFile().getMainFile().getName()
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

environment.getDomainConfigurationFile() will be null if we are on an slave HC. You have to check this possibility.

@@ -897,7 +897,8 @@ public void execute(OperationContext context, ModelNode operation) throws Operat
Notification notification = new Notification(ModelDescriptionConstants.BOOT_COMPLETE_NOTIFICATION, PathAddress.pathAddress(PathElement.pathElement(CORE_SERVICE, MANAGEMENT),
PathElement.pathElement(SERVICE, MANAGEMENT_OPERATIONS)), ControllerLogger.MGMT_OP_LOGGER.bootComplete());
getNotificationSupport().emit(notification);
bootstrapListener.printBootStatistics();
bootstrapListener.printBootStatistics(true, environment.getDomainConfigurationFile().getMainFile().getName()
+ ", " + environment.getHostConfigurationFile().getMainFile().getName());
}
} else {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What about if there is a problem? It can be considered optional, but It would be nice to get the name of the configuration file in use if your server fails to start. Keep in mind if an HC fails to start before processing the domain configuration file, you will end here with a null environment.getDomainConfigurationFile()

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do you mean the else brach starting with "//Die!" comment? I will add some new messages in new push to see if that is what you mean?

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, correct, I think it would be useful if possible and your server / host doesn't start to know which configuration file is in use, so you as a user could have more possibilities to identify the issue. That's optional, feel free to add the possibility if you think it is useful and don't make it too much complex.

@wildfly-ci
Copy link

Core - Full Integration Build 11062 outcome was FAILURE using a merge of f2130c2
Summary: Tests failed: 31 (1 new), passed: 7092, ignored: 144 Build time: 03:35:05

Failed tests

org.jboss.as.test.integration.domain.LegacyJGroupsProtocolsTestCase: java.lang.RuntimeException: Could not start container
	at org.jboss.as.test.integration.domain.management.util.DomainLifecycleUtil.start(DomainLifecycleUtil.java:295)
	at org.jboss.as.test.integration.domain.management.util.DomainTestSupport.start(DomainTestSupport.java:446)
	at org.jboss.as.test.integration.domain.LegacyJGroupsProtocolsTestCase.setupDomain(LegacyJGroupsProtocolsTestCase.java:40)
Caused by: java.util.concurrent.TimeoutException: Managed servers were not started within [120] seconds
	at org.jboss.as.test.integration.domain.management.util.DomainLifecycleUtil.awaitServers(DomainLifecycleUtil.java:560)
	at org.jboss.as.test.integration.domain.management.util.DomainLifecycleUtil.start(DomainLifecycleUtil.java:284)
	... 22 more
------- Stdout: -------
 [0m02:51:52,698 INFO  [org.jboss.modules] (main) JBoss Modules version 1.12.0.Final
 [0m [0m02:51:52,887 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final
 [0m [0m02:51:52,899 INFO  [org.jboss.as.process.Host Controller.status] (main) WFLYPC0018: Starting process 'Host Controller'
 [0m[Host Controller]  [0m02:51:53,331 INFO  [org.jboss.modules] (main) JBoss Modules version 1.12.0.Final [0m
[Host Controller]  [0m [0m02:51:53,573 INFO  [org.jboss.msc] (main) JBoss MSC version 1.4.13.Final [0m
[Host Controller]  [0m [0m02:51:53,582 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final [0m
[Host Controller]  [0m [0m02:51:53,631 INFO  [org.jboss.as] (MSC service thread 1-1) WFLYSRV0049: WildFly Full 26.0.0.Beta1-SNAPSHOT (WildFly Core 18.0.0.Beta2-SNAPSHOT) starting [0m
[Host Controller]  [0m [0m02:51:54,053 INFO  [org.wildfly.security] (Host Controller Service Threads - 2) ELY00001: WildFly Elytron version 1.17.2.Final [0m
[Host Controller]  [0m [0m02:51:54,410 INFO  [org.jboss.as.host.controller] (Controller Boot Thread) WFLYHC0003: Creating http management service using network interface (management) port (9990) securePort (-1) [0m
[Host Controller]  [0m [0m02:51:54,418 INFO  [org.xnio] (MSC service thread 1-5) XNIO version 3.8.4.Final [0m
[Host Controller]  [0m [0m02:51:54,432 INFO  [org.xnio.nio] (MSC service thread 1-5) XNIO NIO Implementation Version 3.8.4.Final [0m
[Host Controller]  [0m [0m02:51:54,538 INFO  [org.jboss.as.patching] (MSC service thread 1-3) WFLYPAT0050: WildFly Full cumulative patch ID is: base, one-off patches include: none [0m
[Host Controller]  [0m [0m02:51:54,571 INFO  [org.jboss.remoting] (MSC service thread 1-3) JBoss Remoting version 5.0.23.Final [0m
[Host Controller]  [0m [0m02:51:54,591 INFO  [org.jboss.as.remoting] (MSC service thread 1-5) WFLYRMT0001: Listening on [::1]:9999 [0m
[Host Controller]  [0m [33m02:51:55,085 WARN  [org.jboss.as.clustering.infinispan] (Controller Boot Thread) WFLYCLINF0004: The 'strategy' attribute of the 'eviction' element is no longer supported and will be ignored [0m
[Host Controller]  [33m [0m [33m02:51:55,085 WARN  [org.jboss.as.clustering.infinispan] (Controller Boot Thread) WFLYCLINF0004: The 'strategy' attribute of the 'eviction' element is no longer supported and will be ignored [0m
[Host Controller]  [33m [0m [33m02:51:55,085 WARN  [org.jboss.as.clustering.infinispan] (Controller Boot Thread) WFLYCLINF0004: The 'strategy' attribute of the 'eviction' element is no longer supported and will be ignored [0m
[Host Controller]  [33m [0m [33m02:51:55,116 WARN  [org.jboss.as.jmx] (Controller Boot Thread) WFLYJMX0006: <jmx-connector/> is no longer supporting. <remoting-connector/> should be used instead to allow remote connections via JBoss Remoting. [0m
[Host Controller]  [33m [0m [33m02:51:55,176 WARN  [org.jboss.as.clustering.infinispan] (Controller Boot Thread) WFLYCLINF0004: The 'strategy' attribute of the 'eviction' element is no longer supported and will be ignored [0m
[Host Controller]  [33m [0m [33m02:51:55,177 WARN  [org.jboss.as.clustering.infinispan] (Controller Boot Thread) WFLYCLINF0004: The 'strategy' attribute of the 'eviction' element is no longer supported and will be ignored [0m
[Host Controller]  [33m [0m [33m02:51:55,177 WARN  [org.jboss.as.clustering.infinispan] (Controller Boot Thread) WFLYCLINF0004: The 'strategy' attribute of the 'eviction' element is no longer supported and will be ignored [0m
[Host Controller]  [33m [0m [33m02:51:55,196 WARN  [org.jboss.as.jmx] (Controller Boot Thread) WFLYJMX0006: <jmx-connector/> is no longer supporting. <remoting-connector/> should be used instead to allow remote connections via JBoss Remoting. [0m
[Host Controller]  [33m [0m [33m02:51:55,556 WARN  [org.jboss.as.clustering.infinispan] (Controller Boot Thread) WFLYCLINF0033: Attribute 'marshaller' is configured to use a deprecated value: LEGACY; use one of the following values instead: [JBOSS, PROTOSTREAM] [0m
[Host Controller]  [33m [0m [33m02:51:55,561 WARN  [org.jboss.as.clustering.infinispan] (Controller Boot Thread) WFLYCLINF0033: Attribute 'marshaller' is configured to use a deprecated value: LEGACY; use one of the following values instead: [JBOSS, PROTOSTREAM] [0m
[Host Controller]  [33m [0m [33m02:51:55,565 WARN  [org.jboss.as.clustering.infinispan] (Controller Boot Thread) WFLYCLINF0033: Attribute 'marshaller' is configured to use a deprecated value: LEGACY; use one of the following values instead: [JBOSS, PROTOSTREAM] [0m
[Host Controller]  [33m [0m [0m02:51:55,570 INFO  [org.jboss.as.controller.management-deprecated] (Controller Boot Thread) WFLYCTL0028: Attribute 'default-stack' in the resource at address '/profile=default/subsystem=jgroups' is deprecated, and may be removed in a future version. See the attribute description in the output of the read-resource-description operation to learn more about the deprecation. [0m
[Host Controller]  [0m [33m02:51:55,638 WARN  [org.jboss.as.clustering.infinispan] (Controller Boot Thread) WFLYCLINF0033: Attribute 'marshaller' is configured to use a deprecated value: LEGACY; use one of the following values instead: [JBOSS, PROTOSTREAM] [0m
[Host Controller]  [33m [0m [33m02:51:55,640 WARN  [org.jboss.as.clustering.infinispan] (Controller Boot Thread) WFLYCLINF0033: Attribute 'marshaller' is configured to use a deprecated value: LEGACY; use one of the following values instead: [JBOSS, PROTOSTREAM] [0m
[Host Controller]  [33m [0m [33m02:51:55,642 WARN  [org.jboss.as.clustering.infinispan] (Controller Boot Thread) WFLYCLINF0033: Attribute 'marshaller' is configured to use a deprecated value: LEGACY; use one of the following values instead: [JBOSS, PROTOSTREAM] [0m
[Host Controller]  [33m [0m [0m02:51:55,646 INFO  [org.jboss.as.controller.management-deprecated] (Controller Boot Thread) WFLYCTL0028: Attribute 'default-stack' in the resource at address '/profile=other/subsystem=jgroups' is deprecated, and may be removed in a future version. See the attribute description in the output of the read-resource-description operation to learn more about the deprecation. [0m
[Host Controller]  [0m [0m02:51:55,775 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0062: Http management interface listening on http://[::1]:9990/management and https://[::1]:-1/management [0m
[Host Controller]  [0m [0m02:51:55,776 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0053: Admin console listening on http://[::1]:9990 and https://[::1]:-1 [0m
[Host Controller]  [0m [0m02:51:55,820 INFO  [org.jboss.as.host.controller] (Controller Boot Thread) WFLYHC0023: Starting server main-one [0m
 [0m02:51:55,954 INFO  [org.jboss.as.process.Server:main-one.status] (ProcessController-threads - 3) WFLYPC0018: Starting process 'Server:main-one'
 [0m[Server:main-one]  [0m02:51:56,410 INFO  [org.jboss.modules] (main) JBoss Modules version 1.12.0.Final [0m
[Server:main-one]  [0m [0m02:51:56,702 INFO  [org.jboss.msc] (main) JBoss MSC version 1.4.13.Final [0m
[Server:main-one]  [0m [0m02:51:56,710 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final [0m
[Server:main-one]  [0m [0m02:51:56,825 INFO  [org.jboss.as] (MSC service thread 1-2) WFLYSRV0049: WildFly Full 26.0.0.Beta1-SNAPSHOT (WildFly Core 18.0.0.Beta2-SNAPSHOT) starting [0m
[Server:main-one]  [0m [0m02:51:56,895 INFO  [org.xnio] (MSC service thread 1-3) XNIO version 3.8.4.Final [0m
[Server:main-one]  [0m [0m02:51:56,909 INFO  [org.xnio.nio] (MSC service thread 1-3) XNIO NIO Implementation Version 3.8.4.Final [0m
[Server:main-one]  [0m [0m02:51:56,941 INFO  [org.jboss.remoting] (MSC service thread 1-1) JBoss Remoting version 5.0.23.Final [0m
[Server:main-one]  [0m [0m02:51:57,227 INFO  [org.wildfly.security] (ServerService Thread Pool -- 2) ELY00001: WildFly Elytron version 1.17.2.Final [0m


org.jboss.as.test.integration.domain.ExpressionSupportSmokeTestCase.test: java.util.concurrent.TimeoutException: Managed servers were not started within [120] seconds
	at org.jboss.as.test.integration.domain.management.util.DomainLifecycleUtil.awaitServers(DomainLifecycleUtil.java:560)
	at org.jboss.as.test.integration.domain.ExpressionSupportSmokeTestCase.test(ExpressionSupportSmokeTestCase.java:151)
------- Stdout: -------
 [0m02:53:53,516 INFO  [org.jboss.modules] (main) JBoss Modules version 1.12.0.Final
 [0m [0m02:53:53,694 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final
 [0m [0m02:53:53,706 INFO  [org.jboss.as.process.Host Controller.status] (main) WFLYPC0018: Starting process 'Host Controller'
 [0m[Host Controller]  [0m02:53:54,115 INFO  [org.jboss.modules] (main) JBoss Modules version 1.12.0.Final [0m
[Host Controller]  [0m [0m02:53:54,344 INFO  [org.jboss.msc] (main) JBoss MSC version 1.4.13.Final [0m
[Host Controller]  [0m [0m02:53:54,353 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final [0m
[Host Controller]  [0m [0m02:53:54,399 INFO  [org.jboss.as] (MSC service thread 1-1) WFLYSRV0049: WildFly Full 26.0.0.Beta1-SNAPSHOT (WildFly Core 18.0.0.Beta2-SNAPSHOT) starting [0m
[Host Controller]  [0m [0m02:53:54,770 INFO  [org.wildfly.security] (Host Controller Service Threads - 4) ELY00001: WildFly Elytron version 1.17.2.Final [0m
[Host Controller]  [0m [0m02:53:55,090 INFO  [org.jboss.as.host.controller] (Controller Boot Thread) WFLYHC0003: Creating http management service using network interface (management) port (9990) securePort (-1) [0m
[Host Controller]  [0m [0m02:53:55,109 INFO  [org.xnio] (MSC service thread 1-4) XNIO version 3.8.4.Final [0m
[Host Controller]  [0m [0m02:53:55,115 INFO  [org.xnio.nio] (MSC service thread 1-4) XNIO NIO Implementation Version 3.8.4.Final [0m
[Host Controller]  [0m [0m02:53:55,152 INFO  [org.jboss.remoting] (MSC service thread 1-8) JBoss Remoting version 5.0.23.Final [0m
[Host Controller]  [0m [0m02:53:55,197 INFO  [org.jboss.as.patching] (MSC service thread 1-2) WFLYPAT0050: WildFly Full cumulative patch ID is: base, one-off patches include: none [0m
[Host Controller]  [0m [0m02:53:56,645 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0025: WildFly Full 26.0.0.Beta1-SNAPSHOT (WildFly Core 18.0.0.Beta2-SNAPSHOT) (Host Controller) started in 2864ms - Started 71 of 72 services (16 services are lazy, passive or on-demand) - Host Controller configuration files in use: testing-domain6107707921756455390.xml, testing-host213862265917116133.xml [0m
[Host Controller]  [0m [0m02:53:56,646 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0062: Http management interface listening on http://[::1]:9990/management and https://[::1]:-1/management [0m
[Host Controller]  [0m [0m02:53:56,647 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0054: Admin console is not enabled [0m
Failed operation:
{
    "operation" => "read-resource",
    "address" => [
        ("host" => "master"),
        ("core-service" => "management"),
        ("service" => "management-operations"),
        ("active-operation" => "1130957912")
    ],
    "include-defaults" => true
}
Response:
{
    "outcome" => "failed",
    "failure-description" => "WFLYCTL0216: Management resource '[
    (\"host\" => \"master\"),
    (\"core-service\" => \"management\"),
    (\"service\" => \"management-operations\"),
    (\"active-operation\" => \"1130957912\")
]' not found",
    "rolled-back" => true,
    "response-headers" => {"process-state" => "reload-required"}
}
Failed operation:
{
    "operation" => "read-resource",
    "address" => [
        ("host" => "master"),
        ("core-service" => "management"),
        ("service" => "management-operations"),
        ("active-operation" => "1130957912")


org.jboss.as.test.integration.domain.DefaultConfigSmokeTestCase.testStandardHost: java.lang.RuntimeException: Could not start container
	at org.jboss.as.test.integration.domain.management.util.DomainLifecycleUtil.start(DomainLifecycleUtil.java:295)
	at org.jboss.as.test.integration.domain.DefaultConfigSmokeTestCase.testStandardHost(DefaultConfigSmokeTestCase.java:65)
Caused by: java.util.concurrent.TimeoutException: Managed servers were not started within [120] seconds
	at org.jboss.as.test.integration.domain.management.util.DomainLifecycleUtil.awaitServers(DomainLifecycleUtil.java:560)
	at org.jboss.as.test.integration.domain.management.util.DomainLifecycleUtil.start(DomainLifecycleUtil.java:284)
	... 29 more
------- Stdout: -------
 [0m02:57:35,955 INFO  [org.jboss.modules] (main) JBoss Modules version 1.12.0.Final
 [0m [0m02:57:36,145 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final
 [0m [0m02:57:36,158 INFO  [org.jboss.as.process.Host Controller.status] (main) WFLYPC0018: Starting process 'Host Controller'
 [0m[Host Controller]  [0m02:57:36,588 INFO  [org.jboss.modules] (main) JBoss Modules version 1.12.0.Final [0m
[Host Controller]  [0m [0m02:57:36,847 INFO  [org.jboss.msc] (main) JBoss MSC version 1.4.13.Final [0m
[Host Controller]  [0m [0m02:57:36,856 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final [0m
[Host Controller]  [0m [0m02:57:36,902 INFO  [org.jboss.as] (MSC service thread 1-1) WFLYSRV0049: WildFly Full 26.0.0.Beta1-SNAPSHOT (WildFly Core 18.0.0.Beta2-SNAPSHOT) starting [0m
[Host Controller]  [0m [0m02:57:37,303 INFO  [org.wildfly.security] (Host Controller Service Threads - 4) ELY00001: WildFly Elytron version 1.17.2.Final [0m
[Host Controller]  [0m [0m02:57:37,644 INFO  [org.jboss.as.host.controller] (Controller Boot Thread) WFLYHC0003: Creating http management service using network interface (management) port (9990) securePort (-1) [0m
[Host Controller]  [0m [0m02:57:37,659 INFO  [org.xnio] (MSC service thread 1-4) XNIO version 3.8.4.Final [0m
[Host Controller]  [0m [0m02:57:37,666 INFO  [org.xnio.nio] (MSC service thread 1-4) XNIO NIO Implementation Version 3.8.4.Final [0m
[Host Controller]  [0m [0m02:57:37,740 INFO  [org.jboss.remoting] (MSC service thread 1-8) JBoss Remoting version 5.0.23.Final [0m
[Host Controller]  [0m [0m02:57:37,747 INFO  [org.jboss.as.patching] (MSC service thread 1-2) WFLYPAT0050: WildFly Full cumulative patch ID is: base, one-off patches include: none [0m
[Host Controller]  [0m [0m02:57:39,417 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0062: Http management interface listening on http://[::1]:9990/management and https://[::1]:-1/management [0m
[Host Controller]  [0m [0m02:57:39,417 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0053: Admin console listening on http://[::1]:9990 and https://[::1]:-1 [0m
[Host Controller]  [0m [0m02:57:39,464 INFO  [org.jboss.as.host.controller] (Controller Boot Thread) WFLYHC0023: Starting server server-one [0m
 [0m02:57:39,604 INFO  [org.jboss.as.process.Server:server-one.status] (ProcessController-threads - 3) WFLYPC0018: Starting process 'Server:server-one'
 [0m[Server:server-one]  [0m02:57:40,046 INFO  [org.jboss.modules] (main) JBoss Modules version 1.12.0.Final [0m
[Server:server-one]  [0m [0m02:57:40,330 INFO  [org.jboss.msc] (main) JBoss MSC version 1.4.13.Final [0m
[Server:server-one]  [0m [0m02:57:40,339 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final [0m
[Server:server-one]  [0m [0m02:57:40,450 INFO  [org.jboss.as] (MSC service thread 1-2) WFLYSRV0049: WildFly Full 26.0.0.Beta1-SNAPSHOT (WildFly Core 18.0.0.Beta2-SNAPSHOT) starting [0m
[Server:server-one]  [0m [0m02:57:40,517 INFO  [org.xnio] (MSC service thread 1-8) XNIO version 3.8.4.Final [0m
[Server:server-one]  [0m [0m02:57:40,523 INFO  [org.xnio.nio] (MSC service thread 1-8) XNIO NIO Implementation Version 3.8.4.Final [0m
[Server:server-one]  [0m [0m02:57:40,550 INFO  [org.jboss.remoting] (MSC service thread 1-6) JBoss Remoting version 5.0.23.Final [0m
[Server:server-one]  [0m [0m02:57:40,809 INFO  [org.wildfly.security] (ServerService Thread Pool -- 2) ELY00001: WildFly Elytron version 1.17.2.Final [0m
[Host Controller]  [0m [0m02:57:40,962 INFO  [org.jboss.as.host.controller] (management task-2) WFLYHC0021: Server [Server:server-one] connected using connection [Channel ID 75a78495 (inbound) of Remoting connection 7c36531c to localhost/0:0:0:0:0:0:0:1:47292 of endpoint "master:MANAGEMENT" <6a3b4625>] [0m
[Host Controller]  [0m [0m02:57:40,989 INFO  [org.jboss.as.host.controller] (Controller Boot Thread) WFLYHC0023: Starting server server-two [0m
[Host Controller]  [0m [0m02:57:41,010 INFO  [org.jboss.as.host.controller] (server-registration-threads - 1) WFLYHC0020: Registering server server-one [0m
 [0m02:57:41,130 INFO  [org.jboss.as.process.Server:server-two.status] (ProcessController-threads - 3) WFLYPC0018: Starting process 'Server:server-two'
 [0m[Server:server-two]  [0m02:57:41,685 INFO  [org.jboss.modules] (main) JBoss Modules version 1.12.0.Final [0m
[Server:server-two]  [0m [0m02:57:42,084 INFO  [org.jboss.msc] (main) JBoss MSC version 1.4.13.Final [0m
[Server:server-two]  [0m [0m02:57:42,093 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final [0m
[Server:server-two]  [0m [0m02:57:42,445 INFO  [org.jboss.as] (MSC service thread 1-1) WFLYSRV0049: WildFly Full 26.0.0.Beta1-SNAPSHOT (WildFly Core 18.0.0.Beta2-SNAPSHOT) starting [0m
[Server:server-two]  [0m [0m02:57:42,566 INFO  [org.xnio] (MSC service thread 1-5) XNIO version 3.8.4.Final [0m
[Server:server-two]  [0m [0m02:57:42,579 INFO  [org.xnio.nio] (MSC service thread 1-5) XNIO NIO Implementation Version 3.8.4.Final [0m
[Server:server-two]  [0m [0m02:57:42,617 INFO  [org.jboss.remoting] (MSC service thread 1-6) JBoss Remoting version 5.0.23.Final [0m
[Server:server-one]  [0m [0m02:57:42,818 INFO  [org.jboss.as.webservices] (ServerService Thread Pool -- 41) WFLYWS0002: Activating WebServices Extension [0m
[Server:server-one]  [0m [0m02:57:42,845 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-5) WFLYUT0003: Undertow 2.2.12.Final starting [0m
[Server:server-one]  [0m [33m02:57:42,848 WARN  [org.jboss.as.txn] (ServerService Thread Pool -- 43) WFLYTX0013: The node-identifier attribute on the /subsystem=transactions is set to the default value. This is a danger for environments running multiple servers. Please make sure the attribute value is unique. [0m
[Server:server-one]  [33m [0m [0m02:57:42,899 INFO  [org.wildfly.extension.microprofile.jwt.smallrye] (ServerService Thread Pool -- 52) WFLYJWT0001: Activating MicroProfile JWT Subsystem [0m
[Server:server-one]  [0m [0m02:57:42,903 INFO  [org.wildfly.extension.microprofile.config.smallrye] (ServerService Thread Pool -- 53) WFLYCONF0001: Activating MicroProfile Config Subsystem [0m
[Server:server-one]  [0m [0m02:57:42,915 INFO  [org.jboss.as.naming] (ServerService Thread Pool -- 50) WFLYNAM0001: Activating Naming Subsystem [0m
[Server:server-two]  [0m [0m02:57:42,921 INFO  [org.wildfly.security] (ServerService Thread Pool -- 2) ELY00001: WildFly Elytron version 1.17.2.Final [0m


org.jboss.as.test.integration.domain.DefaultConfigSmokeTestCase.testMasterAndSlave: java.lang.RuntimeException: Could not start container
	at org.jboss.as.test.integration.domain.management.util.DomainLifecycleUtil.start(DomainLifecycleUtil.java:295)
	at org.jboss.as.test.integration.domain.DefaultConfigSmokeTestCase.testMasterAndSlave(DefaultConfigSmokeTestCase.java:87)
Caused by: java.util.concurrent.TimeoutException: Managed servers were not started within [120] seconds
	at org.jboss.as.test.integration.domain.management.util.DomainLifecycleUtil.awaitServers(DomainLifecycleUtil.java:560)
	at org.jboss.as.test.integration.domain.management.util.DomainLifecycleUtil.start(DomainLifecycleUtil.java:284)
	... 29 more
------- Stdout: -------
 [0m02:59:37,050 INFO  [org.jboss.modules] (main) JBoss Modules version 1.12.0.Final
 [0m [0m02:59:37,234 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final
 [0m [0m02:59:37,246 INFO  [org.jboss.as.process.Host Controller.status] (main) WFLYPC0018: Starting process 'Host Controller'
 [0m[Host Controller]  [0m02:59:37,695 INFO  [org.jboss.modules] (main) JBoss Modules version 1.12.0.Final [0m
[Host Controller]  [0m [0m02:59:37,942 INFO  [org.jboss.msc] (main) JBoss MSC version 1.4.13.Final [0m
[Host Controller]  [0m [0m02:59:37,951 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final [0m
[Host Controller]  [0m [0m02:59:38,002 INFO  [org.jboss.as] (MSC service thread 1-2) WFLYSRV0049: WildFly Full 26.0.0.Beta1-SNAPSHOT (WildFly Core 18.0.0.Beta2-SNAPSHOT) starting [0m
[Host Controller]  [0m [0m02:59:38,398 INFO  [org.wildfly.security] (Host Controller Service Threads - 4) ELY00001: WildFly Elytron version 1.17.2.Final [0m
[Host Controller]  [0m [0m02:59:38,740 INFO  [org.jboss.as.host.controller] (Controller Boot Thread) WFLYHC0003: Creating http management service using network interface (management) port (9990) securePort (-1) [0m
[Host Controller]  [0m [0m02:59:38,757 INFO  [org.xnio] (MSC service thread 1-4) XNIO version 3.8.4.Final [0m
[Host Controller]  [0m [0m02:59:38,764 INFO  [org.xnio.nio] (MSC service thread 1-4) XNIO NIO Implementation Version 3.8.4.Final [0m
[Host Controller]  [0m [0m02:59:38,824 INFO  [org.jboss.remoting] (MSC service thread 1-2) JBoss Remoting version 5.0.23.Final [0m
[Host Controller]  [0m [0m02:59:38,829 INFO  [org.jboss.as.patching] (MSC service thread 1-4) WFLYPAT0050: WildFly Full cumulative patch ID is: base, one-off patches include: none [0m
[Host Controller]  [0m [0m02:59:40,571 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0062: Http management interface listening on http://[::1]:9990/management and https://[::1]:-1/management [0m
[Host Controller]  [0m [0m02:59:40,571 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0053: Admin console listening on http://[::1]:9990 and https://[::1]:-1 [0m
[Host Controller]  [0m [0m02:59:40,601 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0025: WildFly Full 26.0.0.Beta1-SNAPSHOT (WildFly Core 18.0.0.Beta2-SNAPSHOT) (Host Controller) started in 3273ms - Started 71 of 71 services (13 services are lazy, passive or on-demand) - Host Controller configuration files in use: testing-domain249409102074867623.xml, testing-host9159567032626518094.xml [0m
 [0m02:59:41,659 INFO  [org.jboss.modules] (main) JBoss Modules version 1.12.0.Final
 [0m [0m02:59:41,839 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final
 [0m [0m02:59:41,853 INFO  [org.jboss.as.process.Host Controller.status] (main) WFLYPC0018: Starting process 'Host Controller'
 [0m[Host Controller]  [0m02:59:42,266 INFO  [org.jboss.modules] (main) JBoss Modules version 1.12.0.Final [0m
[Host Controller]  [0m [0m02:59:42,512 INFO  [org.jboss.msc] (main) JBoss MSC version 1.4.13.Final [0m
[Host Controller]  [0m [0m02:59:42,521 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final [0m
[Host Controller]  [0m [0m02:59:42,572 INFO  [org.jboss.as] (MSC service thread 1-2) WFLYSRV0049: WildFly Full 26.0.0.Beta1-SNAPSHOT (WildFly Core 18.0.0.Beta2-SNAPSHOT) starting [0m
[Host Controller]  [0m [0m02:59:42,978 INFO  [org.wildfly.security] (Host Controller Service Threads - 4) ELY00001: WildFly Elytron version 1.17.2.Final [0m
[Host Controller]  [0m [0m02:59:43,324 INFO  [org.jboss.as.host.controller] (Controller Boot Thread) WFLYHC0003: Creating http management service using network interface (management) port (19990) securePort (-1) [0m
[Host Controller]  [0m [0m02:59:43,340 INFO  [org.xnio] (MSC service thread 1-1) XNIO version 3.8.4.Final [0m
[Host Controller]  [0m [0m02:59:43,348 INFO  [org.xnio.nio] (MSC service thread 1-1) XNIO NIO Implementation Version 3.8.4.Final [0m
[Host Controller]  [0m [0m02:59:43,430 INFO  [org.jboss.remoting] (MSC service thread 1-5) JBoss Remoting version 5.0.23.Final [0m
[Host Controller]  [0m [0m02:59:43,448 INFO  [org.jboss.as.patching] (MSC service thread 1-1) WFLYPAT0050: WildFly Full cumulative patch ID is: base, one-off patches include: none [0m
[Host Controller]  [0m [0m02:59:45,308 INFO  [org.jboss.as.domain.controller] (Host Controller Service Threads - 33) WFLYHC0019: Registered remote slave host "slave", JBoss WildFly Full 26.0.0.Beta1-SNAPSHOT (WildFly 18.0.0.Beta2-SNAPSHOT) [0m
[Host Controller]  [0m [0m02:59:45,316 INFO  [org.jboss.as.host.controller] (Controller Boot Thread) WFLYHC0148: Connected to master host controller at remote+http://[::1]:9990 [0m
[Host Controller]  [0m [0m02:59:45,373 INFO  [org.jboss.as.host.controller] (Controller Boot Thread) WFLYHC0023: Starting server server-one [0m
 [0m02:59:45,507 INFO  [org.jboss.as.process.Server:server-one.status] (ProcessController-threads - 3) WFLYPC0018: Starting process 'Server:server-one'
 [0m[Server:server-one]  [0m02:59:46,030 INFO  [org.jboss.modules] (main) JBoss Modules version 1.12.0.Final [0m
[Server:server-one]  [0m [0m02:59:46,361 INFO  [org.jboss.msc] (main) JBoss MSC version 1.4.13.Final [0m
[Server:server-one]  [0m [0m02:59:46,371 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final [0m
[Server:server-one]  [0m [0m02:59:46,494 INFO  [org.jboss.as] (MSC service thread 1-2) WFLYSRV0049: WildFly Full 26.0.0.Beta1-SNAPSHOT (WildFly Core 18.0.0.Beta2-SNAPSHOT) starting [0m
[Server:server-one]  [0m [0m02:59:46,564 INFO  [org.xnio] (MSC service thread 1-5) XNIO version 3.8.4.Final [0m
[Server:server-one]  [0m [0m02:59:46,570 INFO  [org.xnio.nio] (MSC service thread 1-5) XNIO NIO Implementation Version 3.8.4.Final [0m
[Server:server-one]  [0m [0m02:59:46,598 INFO  [org.jboss.remoting] (MSC service thread 1-2) JBoss Remoting version 5.0.23.Final [0m
[Server:server-one]  [0m [0m02:59:46,898 INFO  [org.wildfly.security] (ServerService Thread Pool -- 3) ELY00001: WildFly Elytron version 1.17.2.Final [0m
[Host Controller]  [0m [0m02:59:47,075 INFO  [org.jboss.as.host.controller] (management task-1) WFLYHC0021: Server [Server:server-one] connected using connection [Channel ID 14f55005 (inbound) of Remoting connection 09b487fb to localhost/0:0:0:0:0:0:0:1:45342 of endpoint "slave:MANAGEMENT" <32e14cf9>] [0m
[Host Controller]  [0m [0m02:59:47,098 INFO  [org.jboss.as.host.controller] (Controller Boot Thread) WFLYHC0023: Starting server server-two [0m


org.jboss.as.test.integration.domain.OrderedChildResourcesTestCase.testOrderedChildResources: java.lang.RuntimeException: Could not start container
	at org.jboss.as.test.integration.domain.management.util.DomainLifecycleUtil.start(DomainLifecycleUtil.java:295)
	at org.jboss.as.test.integration.domain.OrderedChildResourcesTestCase.testOrderedChildResources(OrderedChildResourcesTestCase.java:69)
Caused by: java.util.concurrent.TimeoutException: Managed servers were not started within [120] seconds
	at org.jboss.as.test.integration.domain.management.util.DomainLifecycleUtil.awaitServers(DomainLifecycleUtil.java:560)
	at org.jboss.as.test.integration.domain.management.util.DomainLifecycleUtil.start(DomainLifecycleUtil.java:284)
	... 29 more
------- Stdout: -------
 [0m03:01:42,483 INFO  [org.jboss.modules] (main) JBoss Modules version 1.12.0.Final
 [0m [0m03:01:42,665 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final
 [0m [0m03:01:42,677 INFO  [org.jboss.as.process.Host Controller.status] (main) WFLYPC0018: Starting process 'Host Controller'
 [0m[Host Controller]  [0m03:01:43,092 INFO  [org.jboss.modules] (main) JBoss Modules version 1.12.0.Final [0m
[Host Controller]  [0m [0m03:01:43,342 INFO  [org.jboss.msc] (main) JBoss MSC version 1.4.13.Final [0m
[Host Controller]  [0m [0m03:01:43,351 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final [0m
[Host Controller]  [0m [0m03:01:43,397 INFO  [org.jboss.as] (MSC service thread 1-2) WFLYSRV0049: WildFly Full 26.0.0.Beta1-SNAPSHOT (WildFly Core 18.0.0.Beta2-SNAPSHOT) starting [0m
[Host Controller]  [0m [0m03:01:43,788 INFO  [org.wildfly.security] (Host Controller Service Threads - 4) ELY00001: WildFly Elytron version 1.17.2.Final [0m
[Host Controller]  [0m [0m03:01:44,107 INFO  [org.jboss.as.host.controller] (Controller Boot Thread) WFLYHC0003: Creating http management service using network interface (management) port (9990) securePort (-1) [0m
[Host Controller]  [0m [0m03:01:44,120 INFO  [org.xnio] (MSC service thread 1-3) XNIO version 3.8.4.Final [0m
[Host Controller]  [0m [0m03:01:44,128 INFO  [org.xnio.nio] (MSC service thread 1-3) XNIO NIO Implementation Version 3.8.4.Final [0m
[Host Controller]  [0m [0m03:01:44,211 INFO  [org.jboss.as.patching] (MSC service thread 1-2) WFLYPAT0050: WildFly Full cumulative patch ID is: base, one-off patches include: none [0m
[Host Controller]  [0m [0m03:01:44,230 INFO  [org.jboss.remoting] (MSC service thread 1-4) JBoss Remoting version 5.0.23.Final [0m
[Host Controller]  [0m [0m03:01:45,781 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0062: Http management interface listening on http://[::1]:9990/management and https://[::1]:-1/management [0m
[Host Controller]  [0m [0m03:01:45,782 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0053: Admin console listening on http://[::1]:9990 and https://[::1]:-1 [0m
[Host Controller]  [0m [0m03:01:45,810 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0025: WildFly Full 26.0.0.Beta1-SNAPSHOT (WildFly Core 18.0.0.Beta2-SNAPSHOT) (Host Controller) started in 3060ms - Started 71 of 71 services (13 services are lazy, passive or on-demand) - Host Controller configuration files in use: testing-domain9187075395492152286.xml, testing-host2467193906939899693.xml [0m
 [0m03:01:46,704 INFO  [org.jboss.modules] (main) JBoss Modules version 1.12.0.Final
 [0m [0m03:01:46,890 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final
 [0m [0m03:01:46,902 INFO  [org.jboss.as.process.Host Controller.status] (main) WFLYPC0018: Starting process 'Host Controller'
 [0m[Host Controller]  [0m03:01:47,334 INFO  [org.jboss.modules] (main) JBoss Modules version 1.12.0.Final [0m
[Host Controller]  [0m [0m03:01:47,581 INFO  [org.jboss.msc] (main) JBoss MSC version 1.4.13.Final [0m
[Host Controller]  [0m [0m03:01:47,590 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final [0m
[Host Controller]  [0m [0m03:01:47,638 INFO  [org.jboss.as] (MSC service thread 1-2) WFLYSRV0049: WildFly Full 26.0.0.Beta1-SNAPSHOT (WildFly Core 18.0.0.Beta2-SNAPSHOT) starting [0m
[Host Controller]  [0m [0m03:01:48,019 INFO  [org.wildfly.security] (Host Controller Service Threads - 4) ELY00001: WildFly Elytron version 1.17.2.Final [0m
[Host Controller]  [0m [0m03:01:48,354 INFO  [org.jboss.as.host.controller] (Controller Boot Thread) WFLYHC0003: Creating http management service using network interface (management) port (19990) securePort (-1) [0m
[Host Controller]  [0m [0m03:01:48,369 INFO  [org.xnio] (MSC service thread 1-5) XNIO version 3.8.4.Final [0m
[Host Controller]  [0m [0m03:01:48,376 INFO  [org.xnio.nio] (MSC service thread 1-5) XNIO NIO Implementation Version 3.8.4.Final [0m
[Host Controller]  [0m [0m03:01:48,433 INFO  [org.jboss.remoting] (MSC service thread 1-3) JBoss Remoting version 5.0.23.Final [0m
[Host Controller]  [0m [0m03:01:48,461 INFO  [org.jboss.as.patching] (MSC service thread 1-3) WFLYPAT0050: WildFly Full cumulative patch ID is: base, one-off patches include: none [0m
[Host Controller]  [0m [0m03:01:50,270 INFO  [org.jboss.as.domain.controller] (Host Controller Service Threads - 2) WFLYHC0019: Registered remote slave host "slave", JBoss WildFly Full 26.0.0.Beta1-SNAPSHOT (WildFly 18.0.0.Beta2-SNAPSHOT) [0m
[Host Controller]  [0m [0m03:01:50,274 INFO  [org.jboss.as.host.controller] (Controller Boot Thread) WFLYHC0148: Connected to master host controller at remote+http://[::1]:9990 [0m
[Host Controller]  [0m [0m03:01:50,337 INFO  [org.jboss.as.host.controller] (Controller Boot Thread) WFLYHC0023: Starting server server-one [0m
 [0m03:01:50,469 INFO  [org.jboss.as.process.Server:server-one.status] (ProcessController-threads - 3) WFLYPC0018: Starting process 'Server:server-one'
 [0m[Server:server-one]  [0m03:01:50,896 INFO  [org.jboss.modules] (main) JBoss Modules version 1.12.0.Final [0m
[Server:server-one]  [0m [0m03:01:51,188 INFO  [org.jboss.msc] (main) JBoss MSC version 1.4.13.Final [0m
[Server:server-one]  [0m [0m03:01:51,196 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final [0m
[Server:server-one]  [0m [0m03:01:51,305 INFO  [org.jboss.as] (MSC service thread 1-1) WFLYSRV0049: WildFly Full 26.0.0.Beta1-SNAPSHOT (WildFly Core 18.0.0.Beta2-SNAPSHOT) starting [0m
[Server:server-one]  [0m [0m03:01:51,374 INFO  [org.xnio] (MSC service thread 1-2) XNIO version 3.8.4.Final [0m
[Server:server-one]  [0m [0m03:01:51,381 INFO  [org.xnio.nio] (MSC service thread 1-2) XNIO NIO Implementation Version 3.8.4.Final [0m
[Server:server-one]  [0m [0m03:01:51,408 INFO  [org.jboss.remoting] (MSC service thread 1-1) JBoss Remoting version 5.0.23.Final [0m
[Server:server-one]  [0m [0m03:01:51,676 INFO  [org.wildfly.security] (ServerService Thread Pool -- 3) ELY00001: WildFly Elytron version 1.17.2.Final [0m
[Host Controller]  [0m [0m03:01:51,822 INFO  [org.jboss.as.host.controller] (management task-1) WFLYHC0021: Server [Server:server-one] connected using connection [Channel ID 587cecee (inbound) of Remoting connection 0e2cd17b to localhost/0:0:0:0:0:0:0:1:46240 of endpoint "slave:MANAGEMENT" <497e57de>] [0m
[Host Controller]  [0m [0m03:01:51,846 INFO  [org.jboss.as.host.controller] (Controller Boot Thread) WFLYHC0023: Starting server server-two [0m


org.jboss.as.test.integration.domain.EEConcurrencyExecutorShutdownTestCase: java.lang.RuntimeException: java.lang.RuntimeException: Could not start container
	at org.jboss.as.test.integration.domain.EEConcurrencyExecutorShutdownTestCase.createAndStartDefaultEESupport(EEConcurrencyExecutorShutdownTestCase.java:111)
	at org.jboss.as.test.integration.domain.EEConcurrencyExecutorShutdownTestCase.setupDomain(EEConcurrencyExecutorShutdownTestCase.java:89)
Caused by: java.lang.RuntimeException: Could not start container
	at org.jboss.as.test.integration.domain.management.util.DomainLifecycleUtil.start(DomainLifecycleUtil.java:295)
	at org.jboss.as.test.integration.domain.management.util.DomainTestSupport.start(DomainTestSupport.java:446)
	at org.jboss.as.test.integration.domain.EEConcurrencyExecutorShutdownTestCase.createAndStartDefaultEESupport(EEConcurrencyExecutorShutdownTestCase.java:108)
	... 21 more
Caused by: java.util.concurrent.TimeoutException: Managed servers were not started within [120] seconds
	at org.jboss.as.test.integration.domain.management.util.DomainLifecycleUtil.awaitServers(DomainLifecycleUtil.java:560)
	at org.jboss.as.test.integration.domain.management.util.DomainLifecycleUtil.start(DomainLifecycleUtil.java:284)
	... 23 more
------- Stdout: -------
 [0m03:03:52,940 INFO  [org.jboss.modules] (main) JBoss Modules version 1.12.0.Final
 [0m [0m03:03:53,118 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final
 [0m [0m03:03:53,130 INFO  [org.jboss.as.process.Host Controller.status] (main) WFLYPC0018: Starting process 'Host Controller'
 [0m[Host Controller]  [0m03:03:53,558 INFO  [org.jboss.modules] (main) JBoss Modules version 1.12.0.Final [0m
[Host Controller]  [0m [0m03:03:53,791 INFO  [org.jboss.msc] (main) JBoss MSC version 1.4.13.Final [0m
[Host Controller]  [0m [0m03:03:53,800 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final [0m
[Host Controller]  [0m [0m03:03:53,846 INFO  [org.jboss.as] (MSC service thread 1-2) WFLYSRV0049: WildFly Full 26.0.0.Beta1-SNAPSHOT (WildFly Core 18.0.0.Beta2-SNAPSHOT) starting [0m
[Host Controller]  [0m [0m03:03:54,225 INFO  [org.wildfly.security] (Host Controller Service Threads - 2) ELY00001: WildFly Elytron version 1.17.2.Final [0m
[Host Controller]  [0m [0m03:03:54,566 INFO  [org.jboss.as.host.controller] (Controller Boot Thread) WFLYHC0003: Creating http management service using network interface (management) port (9990) securePort (-1) [0m
[Host Controller]  [0m [0m03:03:54,570 INFO  [org.xnio] (MSC service thread 1-2) XNIO version 3.8.4.Final [0m
[Host Controller]  [0m [0m03:03:54,577 INFO  [org.xnio.nio] (MSC service thread 1-2) XNIO NIO Implementation Version 3.8.4.Final [0m
[Host Controller]  [0m [0m03:03:54,633 INFO  [org.jboss.remoting] (MSC service thread 1-4) JBoss Remoting version 5.0.23.Final [0m
[Host Controller]  [0m [0m03:03:54,655 INFO  [org.jboss.as.patching] (MSC service thread 1-4) WFLYPAT0050: WildFly Full cumulative patch ID is: base, one-off patches include: none [0m
[Host Controller]  [0m [0m03:03:54,675 INFO  [org.jboss.as.remoting] (MSC service thread 1-2) WFLYRMT0001: Listening on [::1]:9999 [0m
[Host Controller]  [0m [33m03:03:55,197 WARN  [org.jboss.as.clustering.infinispan] (Controller Boot Thread) WFLYCLINF0004: The 'strategy' attribute of the 'eviction' element is no longer supported and will be ignored [0m
[Host Controller]  [33m [0m [33m03:03:55,197 WARN  [org.jboss.as.clustering.infinispan] (Controller Boot Thread) WFLYCLINF0004: The 'strategy' attribute of the 'eviction' element is no longer supported and will be ignored [0m
[Host Controller]  [33m [0m [33m03:03:55,197 WARN  [org.jboss.as.clustering.infinispan] (Controller Boot Thread) WFLYCLINF0004: The 'strategy' attribute of the 'eviction' element is no longer supported and will be ignored [0m
[Host Controller]  [33m [0m [33m03:03:55,212 WARN  [org.jboss.as.jmx] (Controller Boot Thread) WFLYJMX0006: <jmx-connector/> is no longer supporting. <remoting-connector/> should be used instead to allow remote connections via JBoss Remoting. [0m
[Host Controller]  [33m [0m [33m03:03:55,233 WARN  [org.jboss.as.clustering.infinispan] (Controller Boot Thread) WFLYCLINF0004: The 'strategy' attribute of the 'eviction' element is no longer supported and will be ignored [0m
[Host Controller]  [33m [0m [33m03:03:55,234 WARN  [org.jboss.as.clustering.infinispan] (Controller Boot Thread) WFLYCLINF0004: The 'strategy' attribute of the 'eviction' element is no longer supported and will be ignored [0m
[Host Controller]  [33m [0m [33m03:03:55,234 WARN  [org.jboss.as.clustering.infinispan] (Controller Boot Thread) WFLYCLINF0004: The 'strategy' attribute of the 'eviction' element is no longer supported and will be ignored [0m
[Host Controller]  [33m [0m [33m03:03:55,254 WARN  [org.jboss.as.jmx] (Controller Boot Thread) WFLYJMX0006: <jmx-connector/> is no longer supporting. <remoting-connector/> should be used instead to allow remote connections via JBoss Remoting. [0m
[Host Controller]  [33m [0m [33m03:03:55,679 WARN  [org.jboss.as.clustering.infinispan] (Controller Boot Thread) WFLYCLINF0033: Attribute 'marshaller' is configured to use a deprecated value: LEGACY; use one of the following values instead: [JBOSS, PROTOSTREAM] [0m
[Host Controller]  [33m [0m [33m03:03:55,686 WARN  [org.jboss.as.clustering.infinispan] (Controller Boot Thread) WFLYCLINF0033: Attribute 'marshaller' is configured to use a deprecated value: LEGACY; use one of the following values instead: [JBOSS, PROTOSTREAM] [0m
[Host Controller]  [33m [0m [33m03:03:55,689 WARN  [org.jboss.as.clustering.infinispan] (Controller Boot Thread) WFLYCLINF0033: Attribute 'marshaller' is configured to use a deprecated value: LEGACY; use one of the following values instead: [JBOSS, PROTOSTREAM] [0m
[Host Controller]  [33m [0m [33m03:03:55,740 WARN  [org.jboss.as.clustering.infinispan] (Controller Boot Thread) WFLYCLINF0033: Attribute 'marshaller' is configured to use a deprecated value: LEGACY; use one of the following values instead: [JBOSS, PROTOSTREAM] [0m
[Host Controller]  [33m [0m [33m03:03:55,741 WARN  [org.jboss.as.clustering.infinispan] (Controller Boot Thread) WFLYCLINF0033: Attribute 'marshaller' is configured to use a deprecated value: LEGACY; use one of the following values instead: [JBOSS, PROTOSTREAM] [0m
[Host Controller]  [33m [0m [33m03:03:55,743 WARN  [org.jboss.as.clustering.infinispan] (Controller Boot Thread) WFLYCLINF0033: Attribute 'marshaller' is configured to use a deprecated value: LEGACY; use one of the following values instead: [JBOSS, PROTOSTREAM] [0m
[Host Controller]  [33m [0m [0m03:03:55,752 INFO  [org.jboss.as.controller.management-deprecated] (Controller Boot Thread) WFLYCTL0028: Attribute 'default-stack' in the resource at address '/profile=other/subsystem=jgroups' is deprecated, and may be removed in a future version. See the attribute description in the output of the read-resource-description operation to learn more about the deprecation. [0m
[Host Controller]  [0m [0m03:03:55,887 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0062: Http management interface listening on http://[::1]:9990/management and https://[::1]:-1/management [0m
[Host Controller]  [0m [0m03:03:55,887 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0053: Admin console listening on http://[::1]:9990 and https://[::1]:-1 [0m
[Host Controller]  [0m [0m03:03:55,933 INFO  [org.jboss.as.host.controller] (Controller Boot Thread) WFLYHC0023: Starting server main-one [0m
 [0m03:03:56,068 INFO  [org.jboss.as.process.Server:main-one.status] (ProcessController-threads - 3) WFLYPC0018: Starting process 'Server:main-one'
 [0m[Server:main-one]  [0m03:03:56,501 INFO  [org.jboss.modules] (main) JBoss Modules version 1.12.0.Final [0m
[Server:main-one]  [0m [0m03:03:56,778 INFO  [org.jboss.msc] (main) JBoss MSC version 1.4.13.Final [0m
[Server:main-one]  [0m [0m03:03:56,788 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final [0m
[Server:main-one]  [0m [0m03:03:56,904 INFO  [org.jboss.as] (MSC service thread 1-2) WFLYSRV0049: WildFly Full 26.0.0.Beta1-SNAPSHOT (WildFly Core 18.0.0.Beta2-SNAPSHOT) starting [0m
[Server:main-one]  [0m [0m03:03:56,967 INFO  [org.xnio] (MSC service thread 1-6) XNIO version 3.8.4.Final [0m


org.jboss.as.test.integration.domain.suites.CLITestSuite: java.lang.RuntimeException: java.lang.RuntimeException: java.lang.RuntimeException: Could not start container
	at org.jboss.as.test.integration.domain.suites.CLITestSuite.start(CLITestSuite.java:89)
	at org.jboss.as.test.integration.domain.suites.CLITestSuite.initSuite(CLITestSuite.java:103)
Caused by: java.lang.RuntimeException: java.lang.RuntimeException: Could not start container
	at org.jboss.as.test.integration.domain.management.util.DomainTestSupport.createAndStartDefaultSupport(DomainTestSupport.java:100)
	at org.jboss.as.test.integration.domain.suites.CLITestSuite.start(CLITestSuite.java:87)
	... 21 more
Caused by: java.lang.RuntimeException: Could not start container
	at org.jboss.as.test.integration.domain.management.util.DomainLifecycleUtil.start(DomainLifecycleUtil.java:295)
	at org.jboss.as.test.integration.domain.management.util.DomainTestSupport.start(DomainTestSupport.java:446)
	at org.jboss.as.test.integration.domain.management.util.DomainTestSupport.createAndStartDefaultSupport(DomainTestSupport.java:97)
	... 22 more
Caused by: java.util.concurrent.TimeoutException: Managed servers were not started within [120] seconds
	at org.jboss.as.test.integration.domain.management.util.DomainLifecycleUtil.awaitServers(DomainLifecycleUtil.java:560)
	at org.jboss.as.test.integration.domain.management.util.DomainLifecycleUtil.start(DomainLifecycleUtil.java:284)
	... 24 more
------- Stdout: -------
 [0m03:05:53,139 INFO  [org.jboss.modules] (main) JBoss Modules version 1.12.0.Final
 [0m [0m03:05:53,328 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final
 [0m [0m03:05:53,340 INFO  [org.jboss.as.process.Host Controller.status] (main) WFLYPC0018: Starting process 'Host Controller'
 [0m[Host Controller]  [0m03:05:53,791 INFO  [org.jboss.modules] (main) JBoss Modules version 1.12.0.Final [0m
[Host Controller]  [0m [0m03:05:54,041 INFO  [org.jboss.msc] (main) JBoss MSC version 1.4.13.Final [0m
[Host Controller]  [0m [0m03:05:54,051 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final [0m
[Host Controller]  [0m [0m03:05:54,103 INFO  [org.jboss.as] (MSC service thread 1-2) WFLYSRV0049: WildFly Full 26.0.0.Beta1-SNAPSHOT (WildFly Core 18.0.0.Beta2-SNAPSHOT) starting [0m
[Host Controller]  [0m [0m03:05:54,533 INFO  [org.wildfly.security] (Host Controller Service Threads - 2) ELY00001: WildFly Elytron version 1.17.2.Final [0m
[Host Controller]  [0m [0m03:05:54,887 INFO  [org.jboss.as.host.controller] (Controller Boot Thread) WFLYHC0003: Creating http management service using network interface (management) port (9990) securePort (-1) [0m
[Host Controller]  [0m [0m03:05:54,891 INFO  [org.xnio] (MSC service thread 1-2) XNIO version 3.8.4.Final [0m
[Host Controller]  [0m [0m03:05:54,899 INFO  [org.xnio.nio] (MSC service thread 1-2) XNIO NIO Implementation Version 3.8.4.Final [0m
[Host Controller]  [0m [0m03:05:54,959 INFO  [org.jboss.remoting] (MSC service thread 1-6) JBoss Remoting version 5.0.23.Final [0m
[Host Controller]  [0m [31m03:05:55,007 ERROR [org.jboss.msc.service.fail] (MSC service thread 1-2) MSC000001: Failed to start service jboss.remoting.server.management: org.jboss.msc.service.StartException in service jboss.remoting.server.management: WFLYRMT0004: Address already in use [::1]:9999 [0m
[Host Controller]  [31m	at org.jboss.as.remoting.AbstractStreamServerService.start(AbstractStreamServerService.java:131) [0m
[Host Controller]  [31m	at org.jboss.msc.service.ServiceControllerImpl$StartTask.startService(ServiceControllerImpl.java:1739) [0m
[Host Controller]  [31m	at org.jboss.msc.service.ServiceControllerImpl$StartTask.execute(ServiceControllerImpl.java:1701) [0m
[Host Controller]  [31m	at org.jboss.msc.service.ServiceControllerImpl$ControllerTask.run(ServiceControllerImpl.java:1559) [0m
[Host Controller]  [31m	at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) [0m
[Host Controller]  [31m	at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:1990) [0m
[Host Controller]  [31m	at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1486) [0m
[Host Controller]  [31m	at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1377) [0m
[Host Controller]  [31m	at java.lang.Thread.run(Thread.java:748) [0m
[Host Controller]  [31mCaused by: java.net.BindException: Address already in use [0m
[Host Controller]  [31m	at sun.nio.ch.Net.bind0(Native Method) [0m
[Host Controller]  [31m	at sun.nio.ch.Net.bind(Net.java:461) [0m
[Host Controller]  [31m	at sun.nio.ch.Net.bind(Net.java:453) [0m
[Host Controller]  [31m	at sun.nio.ch.ServerSocketChannelImpl.bind(ServerSocketChannelImpl.java:222) [0m
[Host Controller]  [31m	at sun.nio.ch.ServerSocketAdaptor.bind(ServerSocketAdaptor.java:85) [0m
[Host Controller]  [31m	at sun.nio.ch.ServerSocketAdaptor.bind(ServerSocketAdaptor.java:78) [0m
[Host Controller]  [31m	at org.xnio.nio.NioXnioWorker.createTcpConnectionServer(NioXnioWorker.java:180) [0m
[Host Controller]  [31m	at org.xnio.XnioWorker.createStreamConnectionServer(XnioWorker.java:310) [0m
[Host Controller]  [31m	at org.jboss.remoting3.remote.RemoteConnectionProvider$ProviderInterface.createServer(RemoteConnectionProvider.java:372) [0m
[Host Controller]  [31m	at org.jboss.as.remoting.AbstractStreamServerService.start(AbstractStreamServerService.java:122) [0m
[Host Controller]  [31m	... 8 more [0m


org.jboss.as.test.integration.domain.suites.DomainTestSuite: java.lang.RuntimeException: java.lang.RuntimeException: java.lang.RuntimeException: Could not start container
	at org.jboss.as.test.integration.domain.suites.DomainTestSuite.start(DomainTestSuite.java:73)
	at org.jboss.as.test.integration.domain.suites.DomainTestSuite.beforeClass(DomainTestSuite.java:87)
Caused by: java.lang.RuntimeException: java.lang.RuntimeException: Could not start container
	at org.jboss.as.test.integration.domain.management.util.DomainTestSupport.createAndStartDefaultSupport(DomainTestSupport.java:100)
	at org.jboss.as.test.integration.domain.suites.DomainTestSuite.start(DomainTestSuite.java:71)
	... 21 more
Caused by: java.lang.RuntimeException: Could not start container
	at org.jboss.as.test.integration.domain.management.util.DomainLifecycleUtil.start(DomainLifecycleUtil.java:295)
	at org.jboss.as.test.integration.domain.management.util.DomainTestSupport.start(DomainTestSupport.java:446)
	at org.jboss.as.test.integration.domain.management.util.DomainTestSupport.createAndStartDefaultSupport(DomainTestSupport.java:97)
	... 22 more
Caused by: java.util.concurrent.TimeoutException: Managed servers were not started within [120] seconds
	at org.jboss.as.test.integration.domain.management.util.DomainLifecycleUtil.awaitServers(DomainLifecycleUtil.java:560)
	at org.jboss.as.test.integration.domain.management.util.DomainLifecycleUtil.start(DomainLifecycleUtil.java:284)
	... 24 more
------- Stdout: -------
 [0m03:05:56,194 INFO  [org.jboss.modules] (main) JBoss Modules version 1.12.0.Final
 [0m [0m03:05:56,380 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final
 [0m [0m03:05:56,393 INFO  [org.jboss.as.process.Host Controller.status] (main) WFLYPC0018: Starting process 'Host Controller'
 [0m[Host Controller]  [0m03:05:56,820 INFO  [org.jboss.modules] (main) JBoss Modules version 1.12.0.Final [0m
[Host Controller]  [0m [0m03:05:57,069 INFO  [org.jboss.msc] (main) JBoss MSC version 1.4.13.Final [0m
[Host Controller]  [0m [0m03:05:57,079 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final [0m
[Host Controller]  [0m [0m03:05:57,128 INFO  [org.jboss.as] (MSC service thread 1-2) WFLYSRV0049: WildFly Full 26.0.0.Beta1-SNAPSHOT (WildFly Core 18.0.0.Beta2-SNAPSHOT) starting [0m
[Host Controller]  [0m [0m03:05:57,540 INFO  [org.wildfly.security] (Host Controller Service Threads - 2) ELY00001: WildFly Elytron version 1.17.2.Final [0m
[Host Controller]  [0m [0m03:05:57,929 INFO  [org.jboss.as.host.controller] (Controller Boot Thread) WFLYHC0003: Creating http management service using network interface (management) port (9990) securePort (-1) [0m
[Host Controller]  [0m [0m03:05:57,933 INFO  [org.xnio] (MSC service thread 1-3) XNIO version 3.8.4.Final [0m
[Host Controller]  [0m [0m03:05:57,939 INFO  [org.xnio.nio] (MSC service thread 1-3) XNIO NIO Implementation Version 3.8.4.Final [0m
[Host Controller]  [0m [0m03:05:58,007 INFO  [org.jboss.remoting] (MSC service thread 1-1) JBoss Remoting version 5.0.23.Final [0m
[Host Controller]  [0m [0m03:05:58,013 INFO  [org.jboss.as.patching] (MSC service thread 1-3) WFLYPAT0050: WildFly Full cumulative patch ID is: base, one-off patches include: none [0m
[Host Controller]  [0m [31m03:05:58,031 ERROR [org.jboss.msc.service.fail] (MSC service thread 1-4) MSC000001: Failed to start service jboss.remoting.server.management: org.jboss.msc.service.StartException in service jboss.remoting.server.management: WFLYRMT0004: Address already in use [::1]:9999 [0m
[Host Controller]  [31m	at org.jboss.as.remoting.AbstractStreamServerService.start(AbstractStreamServerService.java:131) [0m
[Host Controller]  [31m	at org.jboss.msc.service.ServiceControllerImpl$StartTask.startService(ServiceControllerImpl.java:1739) [0m
[Host Controller]  [31m	at org.jboss.msc.service.ServiceControllerImpl$StartTask.execute(ServiceControllerImpl.java:1701) [0m
[Host Controller]  [31m	at org.jboss.msc.service.ServiceControllerImpl$ControllerTask.run(ServiceControllerImpl.java:1559) [0m
[Host Controller]  [31m	at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) [0m
[Host Controller]  [31m	at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:1990) [0m
[Host Controller]  [31m	at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1486) [0m
[Host Controller]  [31m	at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1377) [0m
[Host Controller]  [31m	at java.lang.Thread.run(Thread.java:748) [0m
[Host Controller]  [31mCaused by: java.net.BindException: Address already in use [0m
[Host Controller]  [31m	at sun.nio.ch.Net.bind0(Native Method) [0m
[Host Controller]  [31m	at sun.nio.ch.Net.bind(Net.java:461) [0m
[Host Controller]  [31m	at sun.nio.ch.Net.bind(Net.java:453) [0m
[Host Controller]  [31m	at sun.nio.ch.ServerSocketChannelImpl.bind(ServerSocketChannelImpl.java:222) [0m
[Host Controller]  [31m	at sun.nio.ch.ServerSocketAdaptor.bind(ServerSocketAdaptor.java:85) [0m
[Host Controller]  [31m	at sun.nio.ch.ServerSocketAdaptor.bind(ServerSocketAdaptor.java:78) [0m
[Host Controller]  [31m	at org.xnio.nio.NioXnioWorker.createTcpConnectionServer(NioXnioWorker.java:180) [0m
[Host Controller]  [31m	at org.xnio.XnioWorker.createStreamConnectionServer(XnioWorker.java:310) [0m
[Host Controller]  [31m	at org.jboss.remoting3.remote.RemoteConnectionProvider$ProviderInterface.createServer(RemoteConnectionProvider.java:372) [0m
[Host Controller]  [31m	at org.jboss.as.remoting.AbstractStreamServerService.start(AbstractStreamServerService.java:122) [0m


org.jboss.as.test.integration.domain.mixed.eap740.MixedDomainOverlay740TestSuite: org.jboss.as.test.integration.domain.mixed.eap740.MixedDomainDeploymentOverlay740TestCase.testInstallAndOverlayDeploymentOnDC: java.lang.AssertionError: {"outcome" : "failed", "failure-description" : {"domain-failure-description" : "WFLYDC0098: The following servers [server-one] are starting; execution of remote management operations is not currently available"}, "rolled-back" : true}
	at org.jboss.as.test.integration.domain.mixed.MixedDeploymentOverlayTestCase.executeAsyncForResult(MixedDeploymentOverlayTestCase.java:270)
	at org.jboss.as.test.integration.domain.mixed.MixedDeploymentOverlayTestCase.testInstallAndOverlayDeploymentOnDC(MixedDeploymentOverlayTestCase.java:144)
------- Stdout: -------
 [0m03:07:21,190 INFO  [org.jboss.modules] (main) JBoss Modules version 1.12.0.Final
 [0m [0m03:07:21,370 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final
 [0m [0m03:07:21,383 INFO  [org.jboss.as.process.Host Controller.status] (main) WFLYPC0018: Starting process 'Host Controller'
 [0m[Host Controller]  [0m03:07:21,826 INFO  [org.jboss.modules] (main) JBoss Modules version 1.12.0.Final [0m
[Host Controller]  [0m [0m03:07:22,088 INFO  [org.jboss.msc] (main) JBoss MSC version 1.4.13.Final [0m
[Host Controller]  [0m [0m03:07:22,097 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final [0m
[Host Controller]  [0m [0m03:07:22,156 INFO  [org.jboss.as] (MSC service thread 1-2) WFLYSRV0049: WildFly Full 26.0.0.Beta1-SNAPSHOT (WildFly Core 18.0.0.Beta2-SNAPSHOT) starting [0m
[Host Controller]  [0m [0m03:07:22,570 INFO  [org.wildfly.security] (Host Controller Service Threads - 2) ELY00001: WildFly Elytron version 1.17.2.Final [0m
[Host Controller]  [0m [0m03:07:22,909 INFO  [org.jboss.as.controller.management-deprecated] (Controller Boot Thread) WFLYCTL0028: Attribute 'permgen-size' in the resource at address '/host=master/jvm=default' is deprecated, and may be removed in a future version. See the attribute description in the output of the read-resource-description operation to learn more about the deprecation. [0m
[Host Controller]  [0m [0m03:07:22,909 INFO  [org.jboss.as.controller.management-deprecated] (Controller Boot Thread) WFLYCTL0028: Attribute 'max-permgen-size' in the resource at address '/host=master/jvm=default' is deprecated, and may be removed in a future version. See the attribute description in the output of the read-resource-description operation to learn more about the deprecation. [0m
[Host Controller]  [0m [0m03:07:22,943 INFO  [org.jboss.as.host.controller] (Controller Boot Thread) WFLYHC0003: Creating http management service using network interface (management) port (9990) securePort (-1) [0m
[Host Controller]  [0m [0m03:07:22,948 INFO  [org.xnio] (MSC service thread 1-3) XNIO version 3.8.4.Final [0m
[Host Controller]  [0m [0m03:07:22,955 INFO  [org.xnio.nio] (MSC service thread 1-3) XNIO NIO Implementation Version 3.8.4.Final [0m
[Host Controller]  [0m [0m03:07:22,994 INFO  [org.jboss.as.patching] (MSC service thread 1-5) WFLYPAT0050: WildFly Full cumulative patch ID is: base, one-off patches include: none [0m
[Host Controller]  [0m [0m03:07:23,014 INFO  [org.jboss.remoting] (MSC service thread 1-8) JBoss Remoting version 5.0.23.Final [0m
[Host Controller]  [0m [0m03:07:23,041 INFO  [org.jboss.as.remoting] (MSC service thread 1-7) WFLYRMT0001: Listening on [::1]:9999 [0m
[Host Controller]  [0m [33m03:07:23,497 WARN  [org.jboss.as.controller] (Controller Boot Thread) WFLYCTL0456: System property "java.net.preferIPv4Stack" is already set in the <system-properties> section of the configuration file. The value set in the command line will be overridden by that value. [0m
[Host Controller]  [33m [0m [0m03:07:24,485 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0025: WildFly Full 26.0.0.Beta1-SNAPSHOT (WildFly Core 18.0.0.Beta2-SNAPSHOT) (Host Controller) started in 3020ms - Started 68 of 71 services (17 services are lazy, passive or on-demand) - Host Controller configuration files in use: testing-domain.xml, testing-host.xml [0m
[Host Controller]  [0m [0m03:07:24,486 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0062: Http management interface listening on http://[::1]:9990/management and https://[::1]:-1/management [0m
[Host Controller]  [0m [0m03:07:24,486 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0054: Admin console is not enabled [0m
Failed operation:
{
    "operation" => "read-resource",
    "address" => [
        ("profile" => "default"),
        ("subsystem" => "opentelemetry")
    ]
}
Response:
{
    "outcome" => "failed",
    "failure-description" => "WFLYCTL0030: No resource definition is registered for address [
    (\"profile\" => \"default\"),
    (\"subsystem\" => \"opentelemetry\")
]",
    "rolled-back" => true
}
Failed operation:
{
    "operation" => "read-resource",
    "address" => [("extension" => "org.wildfly.extension.opentelemetry")]
}
Response:
{
    "outcome" => "failed",
    "failure-description" => "WFLYCTL0216: Management resource '[(\"extension\" => \"org.wildfly.extension.opentelemetry\")]' not found",
    "rolled-back" => true


org.jboss.as.test.integration.domain.mixed.eap740.KernelBehavior740TestSuite: org.jboss.as.test.integration.domain.mixed.eap740.WildcardReads740TestCase.testAllHostsAllServersReadInterfaceDescription: java.lang.AssertionError: Could not start master/server-one
	at org.jboss.as.test.integration.domain.mixed.WildcardReadsTestCase.init(WildcardReadsTestCase.java:116)
------- Stdout: -------
[Host Controller]  [0m [0m03:09:14,590 INFO  [org.jboss.as.domain.controller] (management task-1) WFLYHC0026: Unregistered remote slave host "slave" [0m
 [0m03:09:15,856 INFO  [org.jboss.modules] (main) JBoss Modules version 1.12.0.Final
 [0m [0m03:09:16,036 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final
 [0m [0m03:09:16,048 INFO  [org.jboss.as.process.Host Controller.status] (main) WFLYPC0018: Starting process 'Host Controller'
 [0m[Host Controller]  [0m03:09:16,490 INFO  [org.jboss.modules] (main) JBoss Modules version 1.12.0.Final [0m
[Host Controller]  [0m [0m03:09:16,743 INFO  [org.jboss.msc] (main) JBoss MSC version 1.4.13.Final [0m
[Host Controller]  [0m [0m03:09:16,753 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final [0m
[Host Controller]  [0m [0m03:09:16,808 INFO  [org.jboss.as] (MSC service thread 1-2) WFLYSRV0049: WildFly Full 26.0.0.Beta1-SNAPSHOT (WildFly Core 18.0.0.Beta2-SNAPSHOT) starting [0m
[Host Controller]  [0m [0m03:09:17,210 INFO  [org.wildfly.security] (Host Controller Service Threads - 2) ELY00001: WildFly Elytron version 1.17.2.Final [0m
[Host Controller]  [0m [0m03:09:17,602 INFO  [org.jboss.as.controller.management-deprecated] (Controller Boot Thread) WFLYCTL0028: Attribute 'permgen-size' in the resource at address '/host=master/jvm=default' is deprecated, and may be removed in a future version. See the attribute description in the output of the read-resource-description operation to learn more about the deprecation. [0m
[Host Controller]  [0m [0m03:09:17,602 INFO  [org.jboss.as.controller.management-deprecated] (Controller Boot Thread) WFLYCTL0028: Attribute 'max-permgen-size' in the resource at address '/host=master/jvm=default' is deprecated, and may be removed in a future version. See the attribute description in the output of the read-resource-description operation to learn more about the deprecation. [0m
[Host Controller]  [0m [0m03:09:17,638 INFO  [org.jboss.as.host.controller] (Controller Boot Thread) WFLYHC0003: Creating http management service using network interface (management) port (9990) securePort (-1) [0m
[Host Controller]  [0m [0m03:09:17,642 INFO  [org.xnio] (MSC service thread 1-6) XNIO version 3.8.4.Final [0m
[Host Controller]  [0m [0m03:09:17,649 INFO  [org.xnio.nio] (MSC service thread 1-6) XNIO NIO Implementation Version 3.8.4.Final [0m
[Host Controller]  [0m [0m03:09:17,703 INFO  [org.jboss.remoting] (MSC service thread 1-1) JBoss Remoting version 5.0.23.Final [0m
[Host Controller]  [0m [0m03:09:17,704 INFO  [org.jboss.as.patching] (MSC service thread 1-8) WFLYPAT0050: WildFly Full cumulative patch ID is: base, one-off patches include: none [0m
[Host Controller]  [0m [0m03:09:17,732 INFO  [org.jboss.as.remoting] (MSC service thread 1-8) WFLYRMT0001: Listening on [::1]:9999 [0m
[Host Controller]  [0m [0m03:09:17,976 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0062: Http management interface listening on http://[::1]:9990/management and https://[::1]:-1/management [0m
[Host Controller]  [0m [0m03:09:17,976 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0053: Admin console listening on http://[::1]:9990 and https://[::1]:-1 [0m
[Host Controller]  [0m [0m03:09:18,015 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0025: WildFly Full 26.0.0.Beta1-SNAPSHOT (WildFly Core 18.0.0.Beta2-SNAPSHOT) (Host Controller) started in 1889ms - Started 68 of 71 services (15 services are lazy, passive or on-demand) - Host Controller configuration files in use: testing-domain-minimal.xml, testing-host.xml [0m
 [0m03:09:19,109 INFO  [org.jboss.modules] (main) JBoss Modules version 1.11.0.Final-redhat-00001
 [0m [0m03:09:19,298 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final-redhat-00001
 [0m [0m03:09:19,311 INFO  [org.jboss.as.process.Host Controller.status] (main) WFLYPC0018: Starting process 'Host Controller'
 [0m[Host Controller]  [0m03:09:19,779 INFO  [org.jboss.modules] (main) JBoss Modules version 1.11.0.Final-redhat-00001 [0m
[Host Controller]  [0m [0m03:09:20,096 INFO  [org.jboss.msc] (main) JBoss MSC version 1.4.12.Final-redhat-00001 [0m
[Host Controller]  [0m [0m03:09:20,110 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final-redhat-00001 [0m
[Host Controller]  [0m [0m03:09:20,178 INFO  [org.jboss.as] (MSC service thread 1-2) WFLYSRV0049: WildFly Core 15.0.2.Final-redhat-00001 starting [0m
[Host Controller]  [0m [0m03:09:20,677 INFO  [org.jboss.as.controller.management-deprecated] (Controller Boot Thread) WFLYCTL0028: Attribute 'security-realm' in the resource at address '/host=slave/core-service=management/management-interface=native-interface' is deprecated, and may be removed in a future version. See the attribute description in the output of the read-resource-description operation to learn more about the deprecation. [0m
[Host Controller]  [0m [0m03:09:20,679 INFO  [org.jboss.as.controller.management-deprecated] (Controller Boot Thread) WFLYCTL0028: Attribute 'security-realm' in the resource at address '/' is deprecated, and may be removed in a future version. See the attribute description in the output of the read-resource-description operation to learn more about the deprecation. [0m
[Host Controller]  [0m [0m03:09:20,757 INFO  [org.jboss.as.controller.management-deprecated] (Controller Boot Thread) WFLYCTL0028: Attribute 'permgen-size' in the resource at address '/host=slave/jvm=default' is deprecated, and may be removed in a future version. See the attribute description in the output of the read-resource-description operation to learn more about the deprecation. [0m
[Host Controller]  [0m [0m03:09:20,758 INFO  [org.jboss.as.controller.management-deprecated] (Controller Boot Thread) WFLYCTL0028: Attribute 'max-permgen-size' in the resource at address '/host=slave/jvm=default' is deprecated, and may be removed in a future version. See the attribute description in the output of the read-resource-description operation to learn more about the deprecation. [0m
[Host Controller]  [0m [0m03:09:20,792 INFO  [org.xnio] (MSC service thread 1-5) XNIO version 3.8.4.Final-redhat-00001 [0m
[Host Controller]  [0m [0m03:09:20,809 INFO  [org.xnio.nio] (MSC service thread 1-5) XNIO NIO Implementation Version 3.8.4.Final-redhat-00001 [0m
[Host Controller]  [0m [0m03:09:20,829 INFO  [org.jboss.as.patching] (MSC service thread 1-2) WFLYPAT0050: WildFly cumulative patch ID is: base, one-off patches include: none [0m
[Host Controller]  [0m [33m03:09:20,855 WARN  [org.jboss.as.domain.management.security] (MSC service thread 1-8) WFLYDM0111: Keystore /store/work/tc-work/37b47ae8b9c60325/full/testsuite/mixed-domain/target/domains/KernelBehavior740TestSuite/slave/configuration/application.keystore not found, it will be auto generated on first use with a self signed certificate for host localhost [0m
[Host Controller]  [33m [0m [0m03:09:20,874 INFO  [org.jboss.remoting] (MSC service thread 1-1) JBoss Remoting version 5.0.20.SP1-redhat-00001 [0m
[Host Controller]  [0m [0m03:09:20,948 INFO  [org.jboss.as.remoting] (MSC service thread 1-5) WFLYRMT0001: Listening on [::1]:19999 [0m
[Host Controller]  [0m [0m03:09:20,973 INFO  [org.wildfly.security] (Controller Boot Thread) ELY00001: WildFly Elytron version 1.15.3.Final-redhat-00001 [0m
[Host Controller]  [0m [0m03:09:21,597 INFO  [org.jboss.as.domain.controller] (Host Controller Service Threads - 2) WFLYHC0019: Registered remote slave host "slave", WildFly 15.0.2.Final-redhat-00001 "" [0m
[Host Controller]  [0m [0m03:09:21,600 INFO  [org.jboss.as.host.controller] (Controller Boot Thread) WFLYHC0148: Connected to master host controller at remote://[::1]:9999 [0m
[Host Controller]  [0m [0m03:09:21,653 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0025: WildFly Core 15.0.2.Final-redhat-00001 (Host Controller) started in 2259ms - Started 46 of 51 services (18 services are lazy, passive or on-demand) [0m
[Host Controller]  [0m [0m03:09:22,442 INFO  [org.jboss.as.host.controller] (Host Controller Service Threads - 2) WFLYHC0023: Starting server server-one [0m
 [0m03:09:22,537 INFO  [org.jboss.as.process.Server:server-one.status] (ProcessController-threads - 3) WFLYPC0018: Starting process 'Server:server-one'
 [0m[Server:server-one] 03:09:23,051 INFO  [org.jboss.modules] (main) JBoss Modules version 1.11.0.Final-redhat-00001
[Server:server-one] 03:09:23,410 INFO  [org.jboss.msc] (main) JBoss MSC version 1.4.12.Final-redhat-00001
[Server:server-one] 03:09:23,418 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final-redhat-00001
[Server:server-one] 03:09:23,538 INFO  [org.jboss.as] (MSC service thread 1-1) WFLYSRV0049: WildFly Core 15.0.2.Final-redhat-00001 starting
[Server:server-one] 03:09:23,648 INFO  [org.xnio] (MSC service thread 1-3) XNIO version 3.8.4.Final-redhat-00001


org.jboss.as.test.integration.domain.mixed.eap740.KernelBehavior740TestSuite: org.jboss.as.test.integration.domain.mixed.eap740.WildcardReads740TestCase.testAllHostsAllServersReadRootDescription: java.lang.AssertionError: Could not start master/server-one
	at org.jboss.as.test.integration.domain.mixed.WildcardReadsTestCase.init(WildcardReadsTestCase.java:116)



##### there are 21 more failed tests, see build details

@wildfly-ci
Copy link

Core - Full Integration Build 11000 outcome was FAILURE using a merge of 925fbfe
Summary: Tests failed: 2 (2 new), passed: 4072, ignored: 43 Build time: 02:26:25

Failed tests

org.jboss.as.test.layers.LayersTestCase.test: java.lang.Exception: Exception checking remoting
 Server log 
&#27;[0m05:09:50,426 INFO  [org.jboss.modules] (main) JBoss Modules version 2.0.0.Final
&#27;[0m&#27;[0m05:09:50,945 INFO  [org.jboss.msc] (main) JBoss MSC version 1.4.13.Final
&#27;[0m&#27;[0m05:09:50,969 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final
&#27;[0m&#27;[0m05:09:51,141 INFO  [org.jboss.as] (MSC service thread 1-2) WFLYSRV0049: WildFly Full 26.0.0.Beta1-SNAPSHOT (WildFly Core 18.0.0.Beta3-SNAPSHOT) starting
&#27;[0m&#27;[0m05:09:52,127 INFO  [org.wildfly.security] (ServerService Thread Pool -- 3) ELY00001: WildFly Elytron version 1.17.2.Final
&#27;[0m&#27;[0m05:09:52,544 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-6) WFLYUT0003: Undertow 2.2.12.Final starting
&#27;[0m&#27;[0m05:09:52,547 INFO  [org.xnio] (ServerService Thread Pool -- 7) XNIO version 3.8.4.Final
&#27;[0m&#27;[0m05:09:52,582 INFO  [org.xnio.nio] (ServerService Thread Pool -- 7) XNIO NIO Implementation Version 3.8.4.Final
&#27;[0m&#27;[33m05:09:52,600 WARN  [org.wildfly.extension.elytron] (MSC service thread 1-7) WFLYELY00023: KeyStore file '/store/work/tc-work/37b47ae8b9c60325/full/testsuite/layers/target/layers-results/remoting/standalone/configuration/application.keystore' does not exist. Used blank.
&#27;[0m&#27;[0m05:09:52,617 INFO  [org.wildfly.extension.io] (ServerService Thread Pool -- 7) WFLYIO001: Worker 'default' has auto-configured to 8 IO threads with 64 max task threads based on your 4 available processors
&#27;[0m&#27;[33m05:09:52,624 WARN  [org.wildfly.extension.elytron] (MSC service thread 1-7) WFLYELY01084: KeyStore /store/work/tc-work/37b47ae8b9c60325/full/testsuite/layers/target/layers-results/remoting/standalone/configuration/application.keystore not found, it will be auto generated on first use with a self-signed certificate for host localhost
&#27;[0m&#27;[0m05:09:52,639 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-1) WFLYUT0012: Started server default-server.
&#27;[0m&#27;[0m05:09:52,727 INFO  [org.jboss.remoting] (MSC service thread 1-4) JBoss Remoting version 5.0.23.Final
&#27;[0m&#27;[0m05:09:52,782 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-3) WFLYUT0006: Undertow HTTP listener default listening on 127.0.0.1:8080
&#27;[0m&#27;[0m05:09:52,921 INFO  [org.jboss.as.server] (Controller Boot Thread) WFLYSRV0212: Resuming server
&#27;[0m&#27;[0m05:09:52,924 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0292: WildFly Full 26.0.0.Beta1-SNAPSHOT (WildFly Core 18.0.0.Beta3-SNAPSHOT) started in 3070ms - Started 77 of 84 services (23 services are lazy, passive or on-demand) - Server configuration file in use: standalone.xml

java.lang.Exception: 
Exception checking remoting
 Server log 
 [0m05:09:50,426 INFO  [org.jboss.modules] (main) JBoss Modules version 2.0.0.Final
 [0m [0m05:09:50,945 INFO  [org.jboss.msc] (main) JBoss MSC version 1.4.13.Final
 [0m [0m05:09:50,969 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final
 [0m [0m05:09:51,141 INFO  [org.jboss.as] (MSC service thread 1-2) WFLYSRV0049: WildFly Full 26.0.0.Beta1-SNAPSHOT (WildFly Core 18.0.0.Beta3-SNAPSHOT) starting
 [0m [0m05:09:52,127 INFO  [org.wildfly.security] (ServerService Thread Pool -- 3) ELY00001: WildFly Elytron version 1.17.2.Final
 [0m [0m05:09:52,544 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-6) WFLYUT0003: Undertow 2.2.12.Final starting
 [0m [0m05:09:52,547 INFO  [org.xnio] (ServerService Thread Pool -- 7) XNIO version 3.8.4.Final
 [0m [0m05:09:52,582 INFO  [org.xnio.nio] (ServerService Thread Pool -- 7) XNIO NIO Implementation Version 3.8.4.Final
 [0m [33m05:09:52,600 WARN  [org.wildfly.extension.elytron] (MSC service thread 1-7) WFLYELY00023: KeyStore file '/store/work/tc-work/37b47ae8b9c60325/full/testsuite/layers/target/layers-results/remoting/standalone/configuration/application.keystore' does not exist. Used blank.
 [0m [0m05:09:52,617 INFO  [org.wildfly.extension.io] (ServerService Thread Pool -- 7) WFLYIO001: Worker 'default' has auto-configured to 8 IO threads with 64 max task threads based on your 4 available processors
 [0m [33m05:09:52,624 WARN  [org.wildfly.extension.elytron] (MSC service thread 1-7) WFLYELY01084: KeyStore /store/work/tc-work/37b47ae8b9c60325/full/testsuite/layers/target/layers-results/remoting/standalone/configuration/application.keystore not found, it will be auto generated on first use with a self-signed certificate for host localhost
 [0m [0m05:09:52,639 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-1) WFLYUT0012: Started server default-server.
 [0m [0m05:09:52,727 INFO  [org.jboss.remoting] (MSC service thread 1-4) JBoss Remoting version 5.0.23.Final
 [0m [0m05:09:52,782 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-3) WFLYUT0006: Undertow HTTP listener default listening on 127.0.0.1:8080
 [0m [0m05:09:52,921 INFO  [org.jboss.as.server] (Controller Boot Thread) WFLYSRV0212: Resuming server
 [0m [0m05:09:52,924 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0292: WildFly Full 26.0.0.Beta1-SNAPSHOT (WildFly Core 18.0.0.Beta3-SNAPSHOT) started in 3070ms - Started 77 of 84 services (23 services are lazy, passive or on-demand) - Server configuration file in use: standalone.xml

	at org.jboss.as.test.layers.LayersTest.checkExecution(LayersTest.java:214)
	at org.jboss.as.test.layers.LayersTest.testExecution(LayersTest.java:153)
	at org.jboss.as.test.layers.LayersTestCase.test(LayersTestCase.java:154)
Caused by: java.util.concurrent.TimeoutException
	at java.util.concurrent.FutureTask.get(FutureTask.java:205)
	at org.jboss.as.test.layers.LayersTest.checkExecution(LayersTest.java:211)
	... 32 more


org.jboss.as.test.layers.LayersTestCase.testServlet: java.lang.Exception: Exception checking test-all-layers
 Server log 
&#27;[0m05:10:55,200 INFO  [org.jboss.modules] (main) JBoss Modules version 2.0.0.Final
&#27;[0m&#27;[0m05:10:55,549 INFO  [org.jboss.msc] (main) JBoss MSC version 1.4.13.Final
&#27;[0m&#27;[0m05:10:55,576 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final
&#27;[0m&#27;[0m05:10:55,723 INFO  [org.jboss.as] (MSC service thread 1-1) WFLYSRV0049: WildFly Servlet 26.0.0.Beta1-SNAPSHOT (WildFly Core 18.0.0.Beta3-SNAPSHOT) starting
&#27;[0m&#27;[0m05:10:56,591 INFO  [org.wildfly.security] (ServerService Thread Pool -- 8) ELY00001: WildFly Elytron version 1.17.2.Final
&#27;[0m&#27;[0m05:10:56,980 INFO  [org.jboss.as.server] (Controller Boot Thread) WFLYSRV0039: Creating http management service using socket-binding (management-http)
&#27;[0m&#27;[0m05:10:56,995 INFO  [org.xnio] (MSC service thread 1-6) XNIO version 3.8.4.Final
&#27;[0m&#27;[0m05:10:57,003 INFO  [org.xnio.nio] (MSC service thread 1-6) XNIO NIO Implementation Version 3.8.4.Final
&#27;[0m&#27;[0m05:10:57,046 INFO  [org.wildfly.extension.io] (ServerService Thread Pool -- 18) WFLYIO001: Worker 'default' has auto-configured to 8 IO threads with 64 max task threads based on your 4 available processors
&#27;[0m&#27;[0m05:10:57,057 INFO  [org.jboss.as.naming] (ServerService Thread Pool -- 20) WFLYNAM0001: Activating Naming Subsystem
&#27;[0m&#27;[0m05:10:57,095 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-7) WFLYUT0003: Undertow 2.2.12.Final starting
&#27;[0m&#27;[0m05:10:57,102 INFO  [org.jboss.remoting] (MSC service thread 1-2) JBoss Remoting version 5.0.23.Final
&#27;[0m&#27;[0m05:10:57,135 INFO  [org.jboss.as.naming] (MSC service thread 1-8) WFLYNAM0003: Starting Naming Service
&#27;[0m&#27;[33m05:10:57,197 WARN  [org.wildfly.extension.elytron] (MSC service thread 1-1) WFLYELY00023: KeyStore file '/store/work/tc-work/37b47ae8b9c60325/full/testsuite/layers/target/servlet-layers-results/test-all-layers/standalone/configuration/application.keystore' does not exist. Used blank.
&#27;[0m&#27;[33m05:10:57,308 WARN  [org.wildfly.extension.elytron] (MSC service thread 1-8) WFLYELY01084: KeyStore /store/work/tc-work/37b47ae8b9c60325/full/testsuite/layers/target/servlet-layers-results/test-all-layers/standalone/configuration/application.keystore not found, it will be auto generated on first use with a self-signed certificate for host localhost
&#27;[0m&#27;[0m05:10:57,328 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-3) WFLYUT0012: Started server default-server.
&#27;[0m&#27;[0m05:10:57,335 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-3) Queuing requests.
&#27;[0m&#27;[0m05:10:57,337 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-3) WFLYUT0018: Host default-host starting
&#27;[0m&#27;[0m05:10:57,384 INFO  [io.undertow] (MSC service thread 1-1) UT005039: Undertow starts mod_cluster proxy advertisements on /224.0.1.105:23364 with frequency 10000 ms
&#27;[0m&#27;[33m05:10:57,394 WARN  [org.jboss.as.domain.http.api.undertow] (MSC service thread 1-8) WFLYDMHTTP0003: Unable to load console module for slot main, disabling console
&#27;[0m&#27;[31m05:10:57,406 ERROR [org.jboss.msc.service.fail] (MSC service thread 1-7) MSC000001: Failed to start service org.wildfly.undertow.listener.default: org.jboss.msc.service.StartException in service org.wildfly.undertow.listener.default: Address already in use /127.0.0.1:8080
 at org.wildfly.extension.undertow.ListenerService.start(ListenerService.java:212)
 at org.jboss.msc.service.ServiceControllerImpl$StartTask.startService(ServiceControllerImpl.java:1739)
 at org.jboss.msc.service.ServiceControllerImpl$StartTask.execute(ServiceControllerImpl.java:1701)
 at org.jboss.msc.service.ServiceControllerImpl$ControllerTask.run(ServiceControllerImpl.java:1559)
 at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35)
 at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:1990)
 at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1486)
 at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1377)
 at java.lang.Thread.run(Thread.java:748)

&#27;[0m&#27;[0m05:10:57,412 INFO  [org.jboss.as.server.deployment.scanner] (MSC service thread 1-4) WFLYDS0013: Started FileSystemDeploymentService for directory /store/work/tc-work/37b47ae8b9c60325/full/testsuite/layers/target/servlet-layers-results/test-all-layers/standalone/deployments
&#27;[0m&#27;[0m05:10:57,444 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-2) WFLYUT0006: Undertow HTTP listener management listening on 127.0.0.1:8090
&#27;[0m&#27;[0m05:10:57,558 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-1) WFLYUT0006: Undertow HTTPS listener https listening on 127.0.0.1:8443
&#27;[0m&#27;[31m05:10:57,563 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("add") failed - address: ([
    ("subsystem" => "undertow"),
    ("server" => "default-server"),
    ("http-listener" => "default")
]) - failure description: {"WFLYCTL0080: Failed services" => {"org.wildfly.undertow.listener.default" => "Address already in use /127.0.0.1:8080"}}
&#27;[0m&#27;[0m05:10:57,576 INFO  [org.jboss.as.controller] (Controller Boot Thread) WFLYCTL0183: Service status report
WFLYCTL0186:   Services which failed to start:      service org.wildfly.undertow.listener.default: Address already in use /127.0.0.1:8080

&#27;[0m&#27;[0m05:10:57,627 INFO  [org.jboss.as.server] (Controller Boot Thread) WFLYSRV0212: Resuming server
&#27;[0m&#27;[31m05:10:57,630 ERROR [org.jboss.as] (Controller Boot Thread) WFLYSRV0295: WildFly Servlet 26.0.0.Beta1-SNAPSHOT (WildFly Core 18.0.0.Beta3-SNAPSHOT) started (with errors) in 2828ms - Started 123 of 129 services (1 services failed or missing dependencies, 31 services are lazy, passive or on-demand) - Server configuration file in use: standalone.xml
&#27;[0m&#27;[0m05:10:57,632 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0060: Http management interface listening on http://127.0.0.1:9990/management
&#27;[0m&#27;[0m05:10:57,633 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0054: Admin console is not enabled

java.lang.Exception: 
Exception checking test-all-layers


@wildfly-ci
Copy link

Core - Full Integration Build 11002 outcome was FAILURE using a merge of 5cf4f75
Summary: Tests failed: 2, passed: 4072, ignored: 43 Build time: 02:05:18

Failed tests

org.jboss.as.test.layers.LayersTestCase.test: java.lang.Exception: Exception checking remoting
 Server log 
&#27;[0m09:27:54,953 INFO  [org.jboss.modules] (main) JBoss Modules version 2.0.0.Final
&#27;[0m&#27;[0m09:27:55,357 INFO  [org.jboss.msc] (main) JBoss MSC version 1.4.13.Final
&#27;[0m&#27;[0m09:27:55,369 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final
&#27;[0m&#27;[0m09:27:55,548 INFO  [org.jboss.as] (MSC service thread 1-2) WFLYSRV0049: WildFly Full 26.0.0.Beta1-SNAPSHOT (WildFly Core 18.0.0.Beta3-SNAPSHOT) starting
&#27;[0m&#27;[0m09:27:56,245 INFO  [org.wildfly.security] (ServerService Thread Pool -- 3) ELY00001: WildFly Elytron version 1.17.2.Final
&#27;[0m&#27;[0m09:27:56,670 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-5) WFLYUT0003: Undertow 2.2.12.Final starting
&#27;[0m&#27;[0m09:27:56,672 INFO  [org.xnio] (ServerService Thread Pool -- 7) XNIO version 3.8.4.Final
&#27;[0m&#27;[0m09:27:56,686 INFO  [org.xnio.nio] (ServerService Thread Pool -- 7) XNIO NIO Implementation Version 3.8.4.Final
&#27;[0m&#27;[0m09:27:56,718 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-6) WFLYUT0012: Started server default-server.
&#27;[0m&#27;[0m09:27:56,722 INFO  [org.wildfly.extension.io] (ServerService Thread Pool -- 7) WFLYIO001: Worker 'default' has auto-configured to 8 IO threads with 64 max task threads based on your 4 available processors
&#27;[0m&#27;[33m09:27:56,737 WARN  [org.wildfly.extension.elytron] (MSC service thread 1-4) WFLYELY00023: KeyStore file '/store/work/tc-work/37b47ae8b9c60325/full/testsuite/layers/target/layers-results/remoting/standalone/configuration/application.keystore' does not exist. Used blank.
&#27;[0m&#27;[33m09:27:56,753 WARN  [org.wildfly.extension.elytron] (MSC service thread 1-2) WFLYELY01084: KeyStore /store/work/tc-work/37b47ae8b9c60325/full/testsuite/layers/target/layers-results/remoting/standalone/configuration/application.keystore not found, it will be auto generated on first use with a self-signed certificate for host localhost
&#27;[0m&#27;[0m09:27:56,804 INFO  [org.jboss.remoting] (MSC service thread 1-3) JBoss Remoting version 5.0.23.Final
&#27;[0m&#27;[0m09:27:56,840 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-7) WFLYUT0006: Undertow HTTP listener default listening on 127.0.0.1:8080
&#27;[0m&#27;[0m09:27:56,927 INFO  [org.jboss.as.server] (Controller Boot Thread) WFLYSRV0212: Resuming server
&#27;[0m&#27;[0m09:27:56,929 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0292: WildFly Full 26.0.0.Beta1-SNAPSHOT (WildFly Core 18.0.0.Beta3-SNAPSHOT) started in 2393ms - Started 77 of 84 services (23 services are lazy, passive or on-demand) - Server configuration file in use: standalone.xml

java.lang.Exception: 
Exception checking remoting
 Server log 
 [0m09:27:54,953 INFO  [org.jboss.modules] (main) JBoss Modules version 2.0.0.Final
 [0m [0m09:27:55,357 INFO  [org.jboss.msc] (main) JBoss MSC version 1.4.13.Final
 [0m [0m09:27:55,369 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final
 [0m [0m09:27:55,548 INFO  [org.jboss.as] (MSC service thread 1-2) WFLYSRV0049: WildFly Full 26.0.0.Beta1-SNAPSHOT (WildFly Core 18.0.0.Beta3-SNAPSHOT) starting
 [0m [0m09:27:56,245 INFO  [org.wildfly.security] (ServerService Thread Pool -- 3) ELY00001: WildFly Elytron version 1.17.2.Final
 [0m [0m09:27:56,670 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-5) WFLYUT0003: Undertow 2.2.12.Final starting
 [0m [0m09:27:56,672 INFO  [org.xnio] (ServerService Thread Pool -- 7) XNIO version 3.8.4.Final
 [0m [0m09:27:56,686 INFO  [org.xnio.nio] (ServerService Thread Pool -- 7) XNIO NIO Implementation Version 3.8.4.Final
 [0m [0m09:27:56,718 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-6) WFLYUT0012: Started server default-server.
 [0m [0m09:27:56,722 INFO  [org.wildfly.extension.io] (ServerService Thread Pool -- 7) WFLYIO001: Worker 'default' has auto-configured to 8 IO threads with 64 max task threads based on your 4 available processors
 [0m [33m09:27:56,737 WARN  [org.wildfly.extension.elytron] (MSC service thread 1-4) WFLYELY00023: KeyStore file '/store/work/tc-work/37b47ae8b9c60325/full/testsuite/layers/target/layers-results/remoting/standalone/configuration/application.keystore' does not exist. Used blank.
 [0m [33m09:27:56,753 WARN  [org.wildfly.extension.elytron] (MSC service thread 1-2) WFLYELY01084: KeyStore /store/work/tc-work/37b47ae8b9c60325/full/testsuite/layers/target/layers-results/remoting/standalone/configuration/application.keystore not found, it will be auto generated on first use with a self-signed certificate for host localhost
 [0m [0m09:27:56,804 INFO  [org.jboss.remoting] (MSC service thread 1-3) JBoss Remoting version 5.0.23.Final
 [0m [0m09:27:56,840 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-7) WFLYUT0006: Undertow HTTP listener default listening on 127.0.0.1:8080
 [0m [0m09:27:56,927 INFO  [org.jboss.as.server] (Controller Boot Thread) WFLYSRV0212: Resuming server
 [0m [0m09:27:56,929 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0292: WildFly Full 26.0.0.Beta1-SNAPSHOT (WildFly Core 18.0.0.Beta3-SNAPSHOT) started in 2393ms - Started 77 of 84 services (23 services are lazy, passive or on-demand) - Server configuration file in use: standalone.xml

	at org.jboss.as.test.layers.LayersTest.checkExecution(LayersTest.java:214)
	at org.jboss.as.test.layers.LayersTest.testExecution(LayersTest.java:153)
	at org.jboss.as.test.layers.LayersTestCase.test(LayersTestCase.java:154)
Caused by: java.util.concurrent.TimeoutException
	at java.util.concurrent.FutureTask.get(FutureTask.java:205)
	at org.jboss.as.test.layers.LayersTest.checkExecution(LayersTest.java:211)
	... 32 more


org.jboss.as.test.layers.LayersTestCase.testServlet: java.lang.Exception: Exception checking test-all-layers
 Server log 
&#27;[0m09:28:59,572 INFO  [org.jboss.modules] (main) JBoss Modules version 2.0.0.Final
&#27;[0m&#27;[0m09:28:59,929 INFO  [org.jboss.msc] (main) JBoss MSC version 1.4.13.Final
&#27;[0m&#27;[0m09:28:59,952 INFO  [org.jboss.threads] (main) JBoss Threads version 2.4.0.Final
&#27;[0m&#27;[0m09:29:00,095 INFO  [org.jboss.as] (MSC service thread 1-2) WFLYSRV0049: WildFly Servlet 26.0.0.Beta1-SNAPSHOT (WildFly Core 18.0.0.Beta3-SNAPSHOT) starting
&#27;[0m&#27;[0m09:29:00,908 INFO  [org.wildfly.security] (ServerService Thread Pool -- 2) ELY00001: WildFly Elytron version 1.17.2.Final
&#27;[0m&#27;[0m09:29:01,295 INFO  [org.jboss.as.server] (Controller Boot Thread) WFLYSRV0039: Creating http management service using socket-binding (management-http)
&#27;[0m&#27;[0m09:29:01,311 INFO  [org.xnio] (MSC service thread 1-1) XNIO version 3.8.4.Final
&#27;[0m&#27;[0m09:29:01,318 INFO  [org.xnio.nio] (MSC service thread 1-1) XNIO NIO Implementation Version 3.8.4.Final
&#27;[0m&#27;[0m09:29:01,357 INFO  [org.wildfly.extension.io] (ServerService Thread Pool -- 18) WFLYIO001: Worker 'default' has auto-configured to 8 IO threads with 64 max task threads based on your 4 available processors
&#27;[0m&#27;[0m09:29:01,366 INFO  [org.jboss.as.naming] (ServerService Thread Pool -- 20) WFLYNAM0001: Activating Naming Subsystem
&#27;[0m&#27;[0m09:29:01,437 INFO  [org.jboss.as.naming] (MSC service thread 1-5) WFLYNAM0003: Starting Naming Service
&#27;[0m&#27;[0m09:29:01,437 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-1) WFLYUT0003: Undertow 2.2.12.Final starting
&#27;[0m&#27;[0m09:29:01,466 INFO  [org.jboss.remoting] (MSC service thread 1-4) JBoss Remoting version 5.0.23.Final
&#27;[0m&#27;[33m09:29:01,484 WARN  [org.wildfly.extension.elytron] (MSC service thread 1-3) WFLYELY00023: KeyStore file '/store/work/tc-work/37b47ae8b9c60325/full/testsuite/layers/target/servlet-layers-results/test-all-layers/standalone/configuration/application.keystore' does not exist. Used blank.
&#27;[0m&#27;[33m09:29:01,508 WARN  [org.wildfly.extension.elytron] (MSC service thread 1-2) WFLYELY01084: KeyStore /store/work/tc-work/37b47ae8b9c60325/full/testsuite/layers/target/servlet-layers-results/test-all-layers/standalone/configuration/application.keystore not found, it will be auto generated on first use with a self-signed certificate for host localhost
&#27;[0m&#27;[0m09:29:01,693 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-1) WFLYUT0012: Started server default-server.
&#27;[0m&#27;[0m09:29:01,696 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-5) Queuing requests.
&#27;[0m&#27;[0m09:29:01,697 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-5) WFLYUT0018: Host default-host starting
&#27;[0m&#27;[0m09:29:01,740 INFO  [io.undertow] (MSC service thread 1-4) UT005039: Undertow starts mod_cluster proxy advertisements on /224.0.1.105:23364 with frequency 10000 ms
&#27;[0m&#27;[33m09:29:01,740 WARN  [org.jboss.as.domain.http.api.undertow] (MSC service thread 1-7) WFLYDMHTTP0003: Unable to load console module for slot main, disabling console
&#27;[0m&#27;[31m09:29:01,746 ERROR [org.jboss.msc.service.fail] (MSC service thread 1-2) MSC000001: Failed to start service org.wildfly.undertow.listener.default: org.jboss.msc.service.StartException in service org.wildfly.undertow.listener.default: Address already in use /127.0.0.1:8080
 at org.wildfly.extension.undertow.ListenerService.start(ListenerService.java:212)
 at org.jboss.msc.service.ServiceControllerImpl$StartTask.startService(ServiceControllerImpl.java:1739)
 at org.jboss.msc.service.ServiceControllerImpl$StartTask.execute(ServiceControllerImpl.java:1701)
 at org.jboss.msc.service.ServiceControllerImpl$ControllerTask.run(ServiceControllerImpl.java:1559)
 at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35)
 at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:1990)
 at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1486)
 at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1377)
 at java.lang.Thread.run(Thread.java:748)

&#27;[0m&#27;[0m09:29:01,766 INFO  [org.jboss.as.server.deployment.scanner] (MSC service thread 1-6) WFLYDS0013: Started FileSystemDeploymentService for directory /store/work/tc-work/37b47ae8b9c60325/full/testsuite/layers/target/servlet-layers-results/test-all-layers/standalone/deployments
&#27;[0m&#27;[0m09:29:01,777 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-8) WFLYUT0006: Undertow HTTP listener management listening on 127.0.0.1:8090
&#27;[0m&#27;[0m09:29:01,872 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-4) WFLYUT0006: Undertow HTTPS listener https listening on 127.0.0.1:8443
&#27;[0m&#27;[31m09:29:01,876 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("add") failed - address: ([
    ("subsystem" => "undertow"),
    ("server" => "default-server"),
    ("http-listener" => "default")
]) - failure description: {"WFLYCTL0080: Failed services" => {"org.wildfly.undertow.listener.default" => "Address already in use /127.0.0.1:8080"}}
&#27;[0m&#27;[0m09:29:01,896 INFO  [org.jboss.as.controller] (Controller Boot Thread) WFLYCTL0183: Service status report
WFLYCTL0186:   Services which failed to start:      service org.wildfly.undertow.listener.default: Address already in use /127.0.0.1:8080

&#27;[0m&#27;[0m09:29:01,960 INFO  [org.jboss.as.server] (Controller Boot Thread) WFLYSRV0212: Resuming server
&#27;[0m&#27;[31m09:29:01,963 ERROR [org.jboss.as] (Controller Boot Thread) WFLYSRV0295: WildFly Servlet 26.0.0.Beta1-SNAPSHOT (WildFly Core 18.0.0.Beta3-SNAPSHOT) started (with errors) in 2849ms - Started 123 of 129 services (1 services failed or missing dependencies, 31 services are lazy, passive or on-demand) - Server configuration file in use: standalone.xml
&#27;[0m&#27;[0m09:29:01,965 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0060: Http management interface listening on http://127.0.0.1:9990/management
&#27;[0m&#27;[0m09:29:01,966 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0054: Admin console is not enabled

java.lang.Exception: 
Exception checking test-all-layers


}
} else {
// Die!
String failed = ROOT_LOGGER.unsuccessfulBoot();
String failed;
if (environment != null & environment.getHostConfigurationFile() != null & environment.getDomainConfigurationFile() != null) {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

environment and environment.getHostConfigurationFile() never will be null here.

Comment on lines 234 to 240
/*@LogMessage(level = INFO)
@Message(id = 25, value = "%s started in %dms - Started %d of %d services (%d services are lazy, passive or on-demand) - %s")
void startedClean(String prettyVersionString, long time, int startedServices, int allServices, int passiveOnDemandServices, String configFilesString);

@LogMessage(level = ERROR)
@Message(id = 26, value = "%s started (with errors) in %dms - Started %d of %d services (%d services failed or missing dependencies, %d services are lazy, passive or on-demand)")
void startedWitErrors(String prettyVersionString, long time, int startedServices, int allServices, int problemServices, int passiveOnDemandServices);
@Message(id = 26, value = "%s started (with errors) in %dms - Started %d of %d services (%d services failed or missing dependencies, %d services are lazy, passive or on-demand) - %s")
void startedWitErrors(String prettyVersionString, long time, int startedServices, int allServices, int problemServices, int passiveOnDemandServices, String configFilesString);*/
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sadly, we cannot change the Ids of these two important messages:

  1. They are used considerably for tests on the cloud images
  2. We should not use different ids for messages that means the same, you have added several messages with slightly different text, but they are describing the same: The server or the host controller are started / failed.

You should compose the final messages appending dynamic parts of passing the dynamic parts as arguments to the message, but we cannot use different Ids and or change the current ones.

Those messages and the parts that compose them should be suitable for i8n, I think one possibility to compose them is to use messages without Ids as component parts for the final message, see

@Message(id = Message.NONE, value = "Notification emitted when the process state changes")
as an example

Comment on lines 427 to 429
if (configuration == null || configuration.getServerEnvironment() == null) {
throw new IllegalStateException();
}
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

confguration and configuration.getServerEnvironment() are never null on ServerService

Comment on lines 900 to 902
if (environment == null || environment.getHostConfigurationFile() == null) {
throw new IllegalStateException();
}
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

environment and environment.getHostConfigurationFile() are never null for DomainModelControllerService.boot()

@@ -897,7 +897,8 @@ public void execute(OperationContext context, ModelNode operation) throws Operat
Notification notification = new Notification(ModelDescriptionConstants.BOOT_COMPLETE_NOTIFICATION, PathAddress.pathAddress(PathElement.pathElement(CORE_SERVICE, MANAGEMENT),
PathElement.pathElement(SERVICE, MANAGEMENT_OPERATIONS)), ControllerLogger.MGMT_OP_LOGGER.bootComplete());
getNotificationSupport().emit(notification);
bootstrapListener.printBootStatistics();
bootstrapListener.printBootStatistics(true, environment.getDomainConfigurationFile().getMainFile().getName()
+ ", " + environment.getHostConfigurationFile().getMainFile().getName());
}
} else {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, correct, I think it would be useful if possible and your server / host doesn't start to know which configuration file is in use, so you as a user could have more possibilities to identify the issue. That's optional, feel free to add the possibility if you think it is useful and don't make it too much complex.

@khermano
Copy link
Contributor Author

@yersan I added some changes earlier but I am not sure if you were notified about that so I rather letting you know. If you could look at that later when you have some spare time it would be great. Thank you and sorry for the delay.

Comment on lines 108 to 115
String append = "";
if (configFiles != null & !configFiles.isEmpty() & isHostController & isMaster & configFiles.size() == 2) {
append = ServerLogger.AS_ROOT_LOGGER.hostControllerMasterConfigFilesInUse(configFiles.get(0), configFiles.get(1));
} else if (configFiles != null & !configFiles.isEmpty() & isHostController & !isMaster & configFiles.size() == 1) {
append = ServerLogger.AS_ROOT_LOGGER.hostControllerSlaveConfigFileInUse(configFiles.get(0));
} else if (configFiles != null & !configFiles.isEmpty() & !isHostController & configFiles.size() == 1) {
append = ServerLogger.AS_ROOT_LOGGER.serverConfigFileInUse(configFiles.get(0));
}
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This piece of code is repeated in an if/else. You can extract it from that flow control structure to avoid redundancy.
In addition, && is preferred here since it will break the shortcut as soon as it detects on operand as false, instead of & that will evaluate all the operands aways.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Removing the isMaster argument, you could arrive at something like the following:

String append = "";
if (configFiles != null && !configFiles.isEmpty()) {
    if (isHostController) {
        if (configFiles.size() == 2)
          //  master host contoller message
        else {
          //  slave host controller message
        }
    } else {
        // server message
    }
}

That will facilitate the debugging and it is more redeable

@@ -68,7 +69,7 @@ public StabilityMonitor getStabilityMonitor() {
return monitor;
}

public void printBootStatistics() {
public void printBootStatistics(boolean isHostController, boolean isMaster, List<String> configFiles) {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Remove the boolean isMaster, you don't need it, you can infer the behavior by using configFiles.size() == 2, (configFiles.size() == 2, then you are in a master DC)

@@ -424,10 +424,18 @@ public void undeploy(DeploymentUnit context) {
Notification notification = new Notification(ModelDescriptionConstants.BOOT_COMPLETE_NOTIFICATION, PathAddress.pathAddress(PathElement.pathElement(CORE_SERVICE, MANAGEMENT),
PathElement.pathElement(SERVICE, MANAGEMENT_OPERATIONS)), ServerLogger.AS_ROOT_LOGGER.bootComplete());
getNotificationSupport().emit(notification);
bootstrapListener.printBootStatistics();
List<String> configFiles = new ArrayList<String>();
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Minor detail, you can use Java Type inference capabilities, so instead of new ArrayList<String>() use new ArrayList<>() here.

////////////////////////////////////////////////
//Messages without IDs

@Message(id = Message.NONE, value = " Config files in use: %s, %s")
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

s/Config files/Host Controller configuration files

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Remove the extra white space at the beginning

@Message(id = Message.NONE, value = " Config files in use: %s, %s")
String configFilesInUse(String domainConfigFile, String hostConfigFile);

@Message(id = Message.NONE, value = " Config file in use: %s")
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

s/Config file/Host Controller configuration file

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Remove the extra white space at the beginning

@@ -897,11 +897,22 @@ public void execute(OperationContext context, ModelNode operation) throws Operat
Notification notification = new Notification(ModelDescriptionConstants.BOOT_COMPLETE_NOTIFICATION, PathAddress.pathAddress(PathElement.pathElement(CORE_SERVICE, MANAGEMENT),
PathElement.pathElement(SERVICE, MANAGEMENT_OPERATIONS)), ControllerLogger.MGMT_OP_LOGGER.bootComplete());
getNotificationSupport().emit(notification);
bootstrapListener.printBootStatistics();
List<String> configFiles = new ArrayList<String>();
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Minor detail, you can use Java Type inference capabilities, so instead of new ArrayList<String>() use new ArrayList<>() here.

@khermano khermano force-pushed the WFCORE-4867_from_main branch 4 times, most recently from 8085a94 to c5b44ef Compare November 24, 2021 12:34
@wildfly-ci
Copy link

Core - Full Integration Build 11201 outcome was UNKNOWN using a merge of fb76f53
Summary: Canceled (Error while applying patch; cannot find commit a4d7da3 in the https://github.com/wildfly/wildfly-core.git repository, possible reason: refs/pull/4747/merge branch was updated and the commit selected for the ... Build time: 00:00:17

@wildfly-ci
Copy link

Core - Full Integration Build 11095 outcome was UNKNOWN using a merge of fb76f53
Summary: Canceled (Error while applying patch; cannot find commit a4d7da3 in the https://github.com/wildfly/wildfly-core.git repository, possible reason: refs/pull/4747/merge branch was updated and the commit selected for the ... Build time: 00:00:19

@wildfly-ci
Copy link

Core - Full Integration Build 11202 outcome was UNKNOWN using a merge of fb76f53
Summary: Canceled (Error while applying patch; cannot find commit 7626156 in the https://github.com/wildfly/wildfly-core.git repository, possible reason: refs/pull/4747/merge branch was updated and the commit selected for the ... Build time: 00:00:13

@wildfly-ci
Copy link

Core - Full Integration Build 11096 outcome was UNKNOWN using a merge of fb76f53
Summary: Canceled (Error while applying patch; cannot find commit 5bee706 in the https://github.com/wildfly/wildfly-core.git repository, possible reason: refs/pull/4747/merge branch was updated and the commit selected for the ... Build time: 00:00:20

@wildfly-ci
Copy link

Core - Full Integration Build 11203 outcome was UNKNOWN using a merge of fb76f53
Summary: Canceled (Error while applying patch; cannot find commit 5bee706 in the https://github.com/wildfly/wildfly-core.git repository, possible reason: refs/pull/4747/merge branch was updated and the commit selected for the ... Build time: 00:00:17

@wildfly-ci
Copy link

Core - Full Integration Build 11204 outcome was UNKNOWN using a merge of fb76f53
Summary: Canceled (Error while applying patch; cannot find commit eab982a in the https://github.com/wildfly/wildfly-core.git repository, possible reason: refs/pull/4747/merge branch was updated and the commit selected for the ... Build time: 00:00:31

@wildfly-ci
Copy link

Core - Full Integration Build 11097 outcome was UNKNOWN using a merge of fb76f53
Summary: Canceled (Error while applying patch; cannot find commit eab982a in the https://github.com/wildfly/wildfly-core.git repository, possible reason: refs/pull/4747/merge branch was updated and the commit selected for the ... Build time: 00:00:14

@wildfly-ci
Copy link

Core - Full Integration Build 11209 outcome was FAILURE using a merge of fb76f53
Summary: Tests failed: 9 (9 new), passed: 7170, ignored: 146 Build time: 05:24:56

Failed tests

org.wildfly.test.integration.elytron.oidc.client.subsystem.OidcWithSubsystemConfigTest.testSubsystemOverride: java.lang.AssertionError: Expected code == OK but got 500 for request=http://[::1]:8080/SubsystemOverrideOidcApp/SimpleSecuredServlet
	at org.wildfly.test.integration.elytron.oidc.client.OidcBaseTest.loginToApp(OidcBaseTest.java:184)
	at org.wildfly.test.integration.elytron.oidc.client.OidcBaseTest.loginToApp(OidcBaseTest.java:167)
	at org.wildfly.test.integration.elytron.oidc.client.subsystem.OidcWithSubsystemConfigTest.testSubsystemOverride(OidcWithSubsystemConfigTest.java:111)
------- Stdout: -------
 [0m17:04:50,222 INFO  [org.jboss.as.repository] (management-handler-thread - 1) WFLYDR0001: Content added at location /store/work/tc-work/37b47ae8b9c60325/full/testsuite/integration/elytron-oidc-client/target/wildfly/standalone/data/content/69/dfccd2b2e06c8da15707e72ed890f3c5f6a23a/content
 [0m [0m17:04:50,228 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-7) WFLYSRV0027: Starting deployment of "arquillian-service" (runtime-name: "arquillian-service")
 [0m [33m17:04:50,693 WARN  [org.jboss.as.dependency.private] (MSC service thread 1-7) WFLYSRV0018: Deployment "deployment.arquillian-service" is using a private module ("org.jboss.as.jmx") which may be changed or removed in future versions without notice.
 [0m [33m17:04:50,694 WARN  [org.jboss.as.dependency.private] (MSC service thread 1-7) WFLYSRV0018: Deployment "deployment.arquillian-service" is using a private module ("org.jboss.as.server") which may be changed or removed in future versions without notice.
 [0m [33m17:04:50,694 WARN  [org.jboss.as.dependency.private] (MSC service thread 1-7) WFLYSRV0018: Deployment "deployment.arquillian-service" is using a private module ("org.jboss.jandex") which may be changed or removed in future versions without notice.
 [0m [33m17:04:50,695 WARN  [org.jboss.as.dependency.private] (MSC service thread 1-7) WFLYSRV0018: Deployment "deployment.arquillian-service" is using a private module ("org.wildfly.security.manager") which may be changed or removed in future versions without notice.
 [0m [33m17:04:50,695 WARN  [org.jboss.as.dependency.private] (MSC service thread 1-7) WFLYSRV0018: Deployment "deployment.arquillian-service" is using a private module ("org.wildfly.common") which may be changed or removed in future versions without notice.
 [0m [33m17:04:50,732 WARN  [org.jboss.weld.deployer] (MSC service thread 1-7) WFLYWELD0013: Deployment arquillian-service contains Jakarta Contexts and Dependency Injection annotations but no bean archive was found (no beans.xml or class with bean defining annotations was present).
 [0m [0m17:04:50,779 INFO  [org.jboss.as.server] (management-handler-thread - 1) WFLYSRV0010: Deployed "arquillian-service" (runtime-name : "arquillian-service")
 [0m [0m17:05:52,376 INFO  [org.jboss.as.repository] (management-handler-thread - 1) WFLYDR0001: Content added at location /store/work/tc-work/37b47ae8b9c60325/full/testsuite/integration/elytron-oidc-client/target/wildfly/standalone/data/content/51/d172d3d77c839147e101ddf3ae9831a38e1e4d/content
 [0m [0m17:05:52,387 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-3) WFLYSRV0027: Starting deployment of "ProviderUrlOidcApp.war" (runtime-name: "ProviderUrlOidcApp.war")
 [0m [33m17:05:52,683 WARN  [org.jboss.as.dependency.private] (MSC service thread 1-6) WFLYSRV0018: Deployment "deployment.ProviderUrlOidcApp.war" is using a private module ("org.wildfly.security.manager") which may be changed or removed in future versions without notice.
 [0m [0m17:05:52,804 INFO  [org.jboss.as.arquillian] (MSC service thread 1-4) Arquillian deployment detected: ArquillianConfig[service=jboss.arquillian.config."ProviderUrlOidcApp.war",unit=ProviderUrlOidcApp.war,tests=[org.wildfly.test.integration.elytron.oidc.client.subsystem.OidcWithSubsystemConfigTest]]
 [0m [0m17:05:52,821 INFO  [org.wildfly.extension.undertow] (ServerService Thread Pool -- 85) WFLYUT0021: Registered web context: '/ProviderUrlOidcApp' for server 'default-server'
 [0m [0m17:05:52,908 INFO  [org.jboss.as.server] (management-handler-thread - 1) WFLYSRV0010: Deployed "ProviderUrlOidcApp.war" (runtime-name : "ProviderUrlOidcApp.war")
 [0m [0m17:05:52,965 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-5) WFLYSRV0027: Starting deployment of "AuthServerUrlOidcApp.war" (runtime-name: "AuthServerUrlOidcApp.war")
 [0m [33m17:05:53,159 WARN  [org.jboss.as.dependency.private] (MSC service thread 1-3) WFLYSRV0018: Deployment "deployment.AuthServerUrlOidcApp.war" is using a private module ("org.wildfly.security.manager") which may be changed or removed in future versions without notice.
 [0m [0m17:05:53,262 INFO  [org.jboss.as.arquillian] (MSC service thread 1-5) Arquillian deployment detected: ArquillianConfig[service=jboss.arquillian.config."AuthServerUrlOidcApp.war",unit=AuthServerUrlOidcApp.war,tests=[org.wildfly.test.integration.elytron.oidc.client.subsystem.OidcWithSubsystemConfigTest]]
 [0m [0m17:05:53,274 INFO  [org.wildfly.extension.undertow] (ServerService Thread Pool -- 85) WFLYUT0021: Registered web context: '/AuthServerUrlOidcApp' for server 'default-server'
 [0m [0m17:05:53,326 INFO  [org.jboss.as.server] (management-handler-thread - 2) WFLYSRV0010: Deployed "AuthServerUrlOidcApp.war" (runtime-name : "AuthServerUrlOidcApp.war")
 [0m [0m17:05:53,396 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-4) WFLYSRV0027: Starting deployment of "WrongProviderUrlOidcApp.war" (runtime-name: "WrongProviderUrlOidcApp.war")
 [0m [33m17:05:53,547 WARN  [org.jboss.as.dependency.private] (MSC service thread 1-8) WFLYSRV0018: Deployment "deployment.WrongProviderUrlOidcApp.war" is using a private module ("org.wildfly.security.manager") which may be changed or removed in future versions without notice.
 [0m [0m17:05:53,676 INFO  [org.jboss.as.arquillian] (MSC service thread 1-5) Arquillian deployment detected: ArquillianConfig[service=jboss.arquillian.config."WrongProviderUrlOidcApp.war",unit=WrongProviderUrlOidcApp.war,tests=[org.wildfly.test.integration.elytron.oidc.client.subsystem.OidcWithSubsystemConfigTest]]
 [0m [0m17:05:53,695 INFO  [org.wildfly.extension.undertow] (ServerService Thread Pool -- 86) WFLYUT0021: Registered web context: '/WrongProviderUrlOidcApp' for server 'default-server'
 [0m [0m17:05:53,731 INFO  [org.jboss.as.server] (management-handler-thread - 2) WFLYSRV0010: Deployed "WrongProviderUrlOidcApp.war" (runtime-name : "WrongProviderUrlOidcApp.war")
 [0m [0m17:05:53,793 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-8) WFLYSRV0027: Starting deployment of "WrongSecretOidcApp.war" (runtime-name: "WrongSecretOidcApp.war")
 [0m [33m17:05:53,941 WARN  [org.jboss.as.dependency.private] (MSC service thread 1-8) WFLYSRV0018: Deployment "deployment.WrongSecretOidcApp.war" is using a private module ("org.wildfly.security.manager") which may be changed or removed in future versions without notice.
 [0m [0m17:05:54,090 INFO  [org.jboss.as.arquillian] (MSC service thread 1-7) Arquillian deployment detected: ArquillianConfig[service=jboss.arquillian.config."WrongSecretOidcApp.war",unit=WrongSecretOidcApp.war,tests=[org.wildfly.test.integration.elytron.oidc.client.subsystem.OidcWithSubsystemConfigTest]]
 [0m [0m17:05:54,108 INFO  [org.wildfly.extension.undertow] (ServerService Thread Pool -- 86) WFLYUT0021: Registered web context: '/WrongSecretOidcApp' for server 'default-server'
 [0m [0m17:05:54,135 INFO  [org.jboss.as.server] (management-handler-thread - 2) WFLYSRV0010: Deployed "WrongSecretOidcApp.war" (runtime-name : "WrongSecretOidcApp.war")
 [0m [0m17:05:54,187 INFO  [org.jboss.as.repository] (management-handler-thread - 2) WFLYDR0001: Content added at location /store/work/tc-work/37b47ae8b9c60325/full/testsuite/integration/elytron-oidc-client/target/wildfly/standalone/data/content/f7/06bd93837252330bd4d447edd76682a3ff95ee/content
 [0m [0m17:05:54,205 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-6) WFLYSRV0027: Starting deployment of "SubsystemOverrideOidcApp.war" (runtime-name: "SubsystemOverrideOidcApp.war")
 [0m [33m17:05:54,315 WARN  [org.jboss.as.dependency.private] (MSC service thread 1-2) WFLYSRV0018: Deployment "deployment.SubsystemOverrideOidcApp.war" is using a private module ("org.wildfly.security.manager") which may be changed or removed in future versions without notice.
 [0m [0m17:05:54,434 INFO  [org.jboss.as.arquillian] (MSC service thread 1-6) Arquillian deployment detected: ArquillianConfig[service=jboss.arquillian.config."SubsystemOverrideOidcApp.war",unit=SubsystemOverrideOidcApp.war,tests=[org.wildfly.test.integration.elytron.oidc.client.subsystem.OidcWithSubsystemConfigTest]]
 [0m [0m17:05:54,458 INFO  [org.wildfly.extension.undertow] (ServerService Thread Pool -- 81) WFLYUT0021: Registered web context: '/SubsystemOverrideOidcApp' for server 'default-server'
 [0m [0m17:05:54,492 INFO  [org.jboss.as.server] (management-handler-thread - 2) WFLYSRV0010: Deployed "SubsystemOverrideOidcApp.war" (runtime-name : "SubsystemOverrideOidcApp.war")
 [0m
------- Stderr: -------
[main] INFO    [quay.io/keycloak/keycloak:latest] - Creating container for image: quay.io/keycloak/keycloak:latest
[main] INFO    [quay.io/keycloak/keycloak:latest] - Starting container with ID: f042ced6950293f08faa6600017dab900b62f55a1da1795f20ba926f71ce3a20
[main] INFO    [quay.io/keycloak/keycloak:latest] - Container quay.io/keycloak/keycloak:latest is starting: f042ced6950293f08faa6600017dab900b62f55a1da1795f20ba926f71ce3a20
[main] INFO org.testcontainers.containers.wait.strategy.HttpWaitStrategy - /sweet_bouman: Waiting for 60 seconds for URL: http://localhost:49218/auth (where port 49218 maps to container port 8080)
[main] ERROR    [quay.io/keycloak/keycloak:latest] - Could not start container
org.testcontainers.containers.ContainerLaunchException: Timed out waiting for URL to be accessible (http://localhost:49218/auth should return HTTP 200)
	at org.testcontainers.containers.wait.strategy.HttpWaitStrategy.waitUntilReady(HttpWaitStrategy.java:264)
	at org.testcontainers.containers.wait.strategy.AbstractWaitStrategy.waitUntilReady(AbstractWaitStrategy.java:35)


org.wildfly.test.integration.elytron.oidc.client.subsystem.OidcWithSubsystemConfigTest.testSucessfulAuthenticationWithAuthServerUrl: java.lang.AssertionError: Expected code == OK but got 500 for request=http://[::1]:8080/AuthServerUrlOidcApp/SimpleSecuredServlet
	at org.wildfly.test.integration.elytron.oidc.client.OidcBaseTest.loginToApp(OidcBaseTest.java:184)
	at org.wildfly.test.integration.elytron.oidc.client.OidcBaseTest.loginToApp(OidcBaseTest.java:167)
	at org.wildfly.test.integration.elytron.oidc.client.OidcBaseTest.testSucessfulAuthenticationWithAuthServerUrl(OidcBaseTest.java:145)


org.wildfly.test.integration.elytron.oidc.client.subsystem.OidcWithSubsystemConfigTest.testWrongRoleWithAuthServerUrl: java.lang.AssertionError: Expected code == OK but got 500 for request=http://[::1]:8080/AuthServerUrlOidcApp/SimpleSecuredServlet
	at org.wildfly.test.integration.elytron.oidc.client.OidcBaseTest.loginToApp(OidcBaseTest.java:184)
	at org.wildfly.test.integration.elytron.oidc.client.OidcBaseTest.loginToApp(OidcBaseTest.java:167)
	at org.wildfly.test.integration.elytron.oidc.client.OidcBaseTest.testWrongRoleWithAuthServerUrl(OidcBaseTest.java:151)


org.wildfly.test.integration.elytron.oidc.client.subsystem.OidcWithSubsystemConfigTest.testWrongProviderUrl: java.lang.AssertionError: Expected code == FORBIDDEN but got 500 for request=http://[::1]:8080/WrongProviderUrlOidcApp/SimpleSecuredServlet
	at org.wildfly.test.integration.elytron.oidc.client.OidcBaseTest.loginToApp(OidcBaseTest.java:194)
	at org.wildfly.test.integration.elytron.oidc.client.OidcBaseTest.testWrongProviderUrl(OidcBaseTest.java:157)


org.wildfly.test.integration.elytron.oidc.client.subsystem.OidcWithSubsystemConfigTest.testWrongClientSecret: java.lang.AssertionError: Expected code == OK but got 500 for request=http://[::1]:8080/WrongSecretOidcApp/SimpleSecuredServlet
	at org.wildfly.test.integration.elytron.oidc.client.OidcBaseTest.loginToApp(OidcBaseTest.java:184)
	at org.wildfly.test.integration.elytron.oidc.client.OidcBaseTest.loginToApp(OidcBaseTest.java:167)
	at org.wildfly.test.integration.elytron.oidc.client.OidcBaseTest.testWrongClientSecret(OidcBaseTest.java:163)


org.wildfly.test.integration.elytron.oidc.client.subsystem.OidcWithSubsystemConfigTest.testWrongPasswordWithAuthServerUrl: java.lang.AssertionError: Expected code == OK but got 500 for request=http://[::1]:8080/AuthServerUrlOidcApp/SimpleSecuredServlet
	at org.wildfly.test.integration.elytron.oidc.client.OidcBaseTest.loginToApp(OidcBaseTest.java:184)
	at org.wildfly.test.integration.elytron.oidc.client.OidcBaseTest.loginToApp(OidcBaseTest.java:167)
	at org.wildfly.test.integration.elytron.oidc.client.OidcBaseTest.testWrongPasswordWithAuthServerUrl(OidcBaseTest.java:139)


org.wildfly.test.integration.elytron.oidc.client.subsystem.OidcWithSubsystemConfigTest.testSucessfulAuthenticationWithProviderUrl: java.lang.AssertionError: Expected code == OK but got 500 for request=http://[::1]:8080/ProviderUrlOidcApp/SimpleSecuredServlet
	at org.wildfly.test.integration.elytron.oidc.client.OidcBaseTest.loginToApp(OidcBaseTest.java:184)
	at org.wildfly.test.integration.elytron.oidc.client.OidcBaseTest.loginToApp(OidcBaseTest.java:167)
	at org.wildfly.test.integration.elytron.oidc.client.OidcBaseTest.testSucessfulAuthenticationWithProviderUrl(OidcBaseTest.java:127)


org.wildfly.test.integration.elytron.oidc.client.subsystem.OidcWithSubsystemConfigTest.testWrongPasswordWithProviderUrl: java.lang.AssertionError: Expected code == OK but got 500 for request=http://[::1]:8080/ProviderUrlOidcApp/SimpleSecuredServlet
	at org.wildfly.test.integration.elytron.oidc.client.OidcBaseTest.loginToApp(OidcBaseTest.java:184)
	at org.wildfly.test.integration.elytron.oidc.client.OidcBaseTest.loginToApp(OidcBaseTest.java:167)
	at org.wildfly.test.integration.elytron.oidc.client.OidcBaseTest.testWrongPasswordWithProviderUrl(OidcBaseTest.java:121)


org.wildfly.test.integration.elytron.oidc.client.subsystem.OidcWithSubsystemConfigTest.testWrongRoleWithProviderUrl: java.lang.AssertionError: Expected code == OK but got 500 for request=http://[::1]:8080/ProviderUrlOidcApp/SimpleSecuredServlet
	at org.wildfly.test.integration.elytron.oidc.client.OidcBaseTest.loginToApp(OidcBaseTest.java:184)
	at org.wildfly.test.integration.elytron.oidc.client.OidcBaseTest.loginToApp(OidcBaseTest.java:167)
	at org.wildfly.test.integration.elytron.oidc.client.OidcBaseTest.testWrongRoleWithProviderUrl(OidcBaseTest.java:133)


@wildfly-ci
Copy link

Core - Full Integration Build 11212 outcome was FAILURE using a merge of fb76f53
Summary: Tests passed: 7041, ignored: 131; exit code 1 (Step: Build & test full (Maven)) (new) Build time: 03:05:09

Copy link
Collaborator

@yersan yersan left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@jmesnil / @bstansberry Changes on this PR look good to me, but I would like to get your feedback before merging. With this PR we were going to get these logs:

Standalone:

09:10:00,539 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0025: WildFly Core 18.0.0.Beta4-SNAPSHOT started in 1550ms - Started 80 of 82 services (16 services are lazy, passive or on-demand) - Server configuration file in use: standalone.xml

Domain Mode:

[Host Controller] 09:12:13,221 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0025: WildFly Core 18.0.0.Beta4-SNAPSHOT (Host Controller) started in 4438ms - Started 70 of 72 services (15 services are lazy, passive or on-demand) - Host Controller configuration files in use: domain.xml, host.xml

Copy link
Member

@jmesnil jmesnil left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@yersan we are not losing any existing info and add an important one. I'm fine with that changes.

@bstansberry do you see any issue with adding info to this essential WFLYSRV0025 log?

@jmesnil jmesnil added the ready-for-merge This PR is ready to be merged and fulfills all requirements label Jan 6, 2022
@jmesnil jmesnil merged commit 7346c53 into wildfly:main Jan 7, 2022
@jmesnil
Copy link
Member

jmesnil commented Jan 7, 2022

@khermano thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
deps-ok Dependencies have been checked, and there are no significant changes ready-for-merge This PR is ready to be merged and fulfills all requirements
Projects
None yet
5 participants