[jboss-jira] [JBoss JIRA] (AS7-2907) Incorrect handling of composite operations with steps that address multiple hosts in a managed domain
Brian Stansberry (Created) (JIRA)
jira-events at lists.jboss.org
Sat Dec 3 23:22:40 EST 2011
Incorrect handling of composite operations with steps that address multiple hosts in a managed domain
-----------------------------------------------------------------------------------------------------
Key: AS7-2907
URL: https://issues.jboss.org/browse/AS7-2907
Project: Application Server 7
Issue Type: Bug
Components: Domain Management
Affects Versions: 7.1.0.Beta1, 7.0.2.Final
Reporter: Brian Stansberry
Assignee: Brian Stansberry
Priority: Critical
This:
{
"operation" => "composite",
"address" => undefined,
"steps" => [
{
"operation" => "read-attribute",
"address" => [("host" => "master")],
"name" => "name"
},
{
"operation" => "read-attribute",
"address" => [
("host" => "master"),
("interface" => "public")
],
"name" => "inet-address"
},
{
"operation" => "read-attribute",
"address" => [("host" => "slave")],
"name" => "name"
},
{
"operation" => "read-attribute",
"address" => [
("host" => "slave"),
("interface" => "public")
],
"name" => "inet-address"
}
]
}
Results in:
{
"outcome" => "success",
"result" => {
"domain-results" => {
"step-1" => {"step-1" => {
"outcome" => undefined,
"result" => "master"
}},
"step-2" => {"step-2" => {
"outcome" => undefined,
"result" => expression "${jboss.test.host.master.address}"
}},
"step-3" => {"outcome" => "ignored-by-unaffected-host-controller"},
"step-4" => {"outcome" => "ignored-by-unaffected-host-controller"}
},
"server-operations" => undefined
}
}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
More information about the jboss-jira
mailing list