]
Petr Beran reassigned WFCORE-2957:
----------------------------------
Assignee: Petr Beran
read-resource without include-runtime shows runtime-only resources
------------------------------------------------------------------
Key: WFCORE-2957
URL:
https://issues.redhat.com/browse/WFCORE-2957
Project: WildFly Core
Issue Type: Bug
Components: Management
Reporter: Michal Petrov
Assignee: Petr Beran
Priority: Major
read-resource without explicitly set include-runtime will show runtime-only resources
{code}
/extension=org.jboss.as.weld:read-resource()
{
"outcome" => "success",
"result" => {
"module" => "org.jboss.as.weld",
"subsystem" => {"weld" => undefined}
}
}
{code}
however adding "recursive" will not show the resource at all:
{code}
/extension=org.jboss.as.weld:read-resource(recursive)
{
"outcome" => "success",
"result" => {
"module" => "org.jboss.as.weld",
"subsystem" => undefined
}
}
{code}