]
Harald Pehl updated WFCORE-2530:
--------------------------------
Affects Version/s: 3.0.0.Beta7
:read-boot-errors() operation does not follow its operation
description
-----------------------------------------------------------------------
Key: WFCORE-2530
URL:
https://issues.jboss.org/browse/WFCORE-2530
Project: WildFly Core
Issue Type: Bug
Affects Versions: 3.0.0.Beta7
Reporter: Harald Pehl
The reply properties of the {{:read-boot-errors()}} operation lists the attribute
{{missing-transitive-dependency-problems}} which is defined as
{code}
"missing-transitive-dependency-problems" => {
"type" => OBJECT,
"description" => "Missing transitive dependency issues found during
execution of the operation.",
"expressions-allowed" => false,
"required" => false,
"nillable" => true,
"value-type" => {
"services-missing-transitive-dependencies" => {
"type" => LIST,
"description" => "Services that had a missing transitive
dependency.",
"expressions-allowed" => false,
"required" => true,
"nillable" => false,
"value-type" => STRING
},
"possible-causes" => {
"type" => LIST,
"description" => "Services that are missing and may be the
cause of the missing transitive dependency.",
"expressions-allowed" => false,
"required" => true,
"nillable" => false,
"value-type" => STRING
}
}
}
{code}
However the result uses the strings "Services that were unable to start:" and
"Services that may be the cause:" instead of
{{services-missing-transitive-dependencies}} and {{possible-causes}}:
{code}
...
"missing-transitive-dependency-problems" => {
"Services that were unable to start:" =>
["jboss.messaging-activemq.default.jms.manager"],
"Services that may be the cause:" => [
"jboss.http-upgrade-registry.default",
"jboss.remoting.remotingConnectorInfoService.http-remoting-connector"
]
}
...
{code}