]
RH Bugzilla Integration commented on TEIID-4938:
------------------------------------------------
Van Halbert <vhalbert(a)redhat.com> changed the Status of [bug
CLI getVDB operation domain mode - result of the operation is not in
"result" element
-------------------------------------------------------------------------------------
Key: TEIID-4938
URL:
https://issues.jboss.org/browse/TEIID-4938
Project: Teiid
Issue Type: Bug
Affects Versions: 9.3, 8.12.10.6_3
Reporter: Juraj DurĂ¡ni
Assignee: Steven Hawkins
Priority: Minor
If user reads status of VDB in domain mode, result of the operation is not written in the
"result" attribute, but in separate attribute. Executing same operation in
standalone mode, result is in "result" element.
{code:plain|title=Domain mode result}
[domain@localhost:9990 /] /profile=full/subsystem=teiid:get-vdb(...)
{
"outcome" => "success",
"result" => undefined,
"server-groups" => {"main-server-group" =>
{"host" => {"master" => {
"server-one" => {"response" => {
"outcome" => "success",
"result" => {...
}
}},
"server-two" => {"response" => {
"outcome" => "success",
"result" => {...
}
}}
}}}}
}
{code}
{code:plain|title=Standalone mode result}
[standalone@localhost:9990 /] /subsystem=teiid:get-vdb(...)
{
"outcome" => "success",
"result" => {...
}
}
{code}