[
https://issues.jboss.org/browse/WFCORE-3259?page=com.atlassian.jira.plugi...
]
Brian Stansberry updated WFCORE-3259:
-------------------------------------
Description:
In checkFailedTransformedBootOperations:
{code}
if (config.isTransformComposite()) {
//Transform and execute the composite
TransformedOperation transformedComposite =
mainServices.transformOperation(modelVersion, legacyComposite);
if (transformedComposite.rejectOperation(successResult())) {
Assert.fail(transformedComposite.getFailureDescription());
}
mainServices.executeOperation(modelVersion, transformedComposite);
}
{code}
The outcome of that "mainServices.executeOperation" is ignored, so if the
transformation isn't actually producing good ops, we don't know that.
was:
In checkFailedTransformedBootOperations:
{code}
if (config.isTransformComposite()) {
//Transform and execute the composite
TransformedOperation transformedComposite =
mainServices.transformOperation(modelVersion, legacyComposite);
if (transformedComposite.rejectOperation(successResult())) {
Assert.fail(transformedComposite.getFailureDescription());
}
mainServices.executeOperation(modelVersion, transformedComposite);
}
{code}
The result of that "mainServices.executeOperation" is ignored, so if the
transformation isn't actually producing good ops, we don't know that.
ModelTestUtils isn't confirming the transformed boot ops work on
the legacy slave
---------------------------------------------------------------------------------
Key: WFCORE-3259
URL:
https://issues.jboss.org/browse/WFCORE-3259
Project: WildFly Core
Issue Type: Bug
Components: Domain Management, Test Suite
Reporter: Brian Stansberry
Assignee: Brian Stansberry
In checkFailedTransformedBootOperations:
{code}
if (config.isTransformComposite()) {
//Transform and execute the composite
TransformedOperation transformedComposite =
mainServices.transformOperation(modelVersion, legacyComposite);
if (transformedComposite.rejectOperation(successResult())) {
Assert.fail(transformedComposite.getFailureDescription());
}
mainServices.executeOperation(modelVersion, transformedComposite);
}
{code}
The outcome of that "mainServices.executeOperation" is ignored, so if the
transformation isn't actually producing good ops, we don't know that.
--
This message was sent by Atlassian JIRA
(v7.2.3#72005)