[jboss-jira] [JBoss JIRA] Updated: (JBAS-9288) ServerDeploymentManager: Cannot get the result of a deployment action
Andre Dietisheim (JIRA)
jira-events at lists.jboss.org
Mon Apr 11 10:54:33 EDT 2011
[ https://issues.jboss.org/browse/JBAS-9288?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Andre Dietisheim updated JBAS-9288:
-----------------------------------
Description:
I actually try to get the result of a deployment and unfortunately fail so far.
I proceed in the following manner:
I add an deployment, get the action that was created for it, and then
try to retrieve the result of this action:
...
ServerDeploymentManager manager = ServerDeploymentManager.Factory.create(client);
InitialDeploymentPlanBuilder builder = manager.newDeploymentPlan();
builder = builder.add(file.getName(), file).addDeploy();
DeploymentAction action = builder.getLastAction();
DeploymentPlan plan = builder.build();
Future<ServerDeploymentPlanResult> planResult = manager.execute(plan);
ServerDeploymentPlanResult result = resultFuture.get(timeout,TimeUnit.MILLISECONDS);
ServerDeploymentActionResult actionResult = result.getDeploymentActionResult(action.getId());
....
ActionResult is always null.
Behind the scenes the server deployment plan seems to always hold an empty map of
actionResults (DeploymentPlanResultImpl#actionResults).
was:
I actually try to get the result of a deployment and unfortunately fail so far.
I proceed in the following manner:
I add an deployment, get the action that was created for it, and then
try to retrieve the result of this action:
...
ServerDeploymentManager manager =
ServerDeploymentManager.Factory.create(client);
InitialDeploymentPlanBuilder builder = manager.newDeploymentPlan();
builder = builder.add(file.getName(), file).addDeploy();
DeploymentAction action = builder.getLastAction();
DeploymentPlan plan = builder.build();
Future<ServerDeploymentPlanResult> planResult = manager.execute(plan);
ServerDeploymentPlanResult result = resultFuture.get(timeout,TimeUnit.MILLISECONDS);
ServerDeploymentActionResult actionResult =
result.getDeploymentActionResult(action.getId());
....
Unfortunately actionResult is always null.
Stepping through the code did not help a lot so far: The result of the
server deployment plan seems always to hold an empty map of
actionResults (DeploymentPlanResultImpl#actionResults).
> ServerDeploymentManager: Cannot get the result of a deployment action
> ---------------------------------------------------------------------
>
> Key: JBAS-9288
> URL: https://issues.jboss.org/browse/JBAS-9288
> Project: JBoss Application Server
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Affects Versions: 7.0.0.Beta2
> Reporter: Andre Dietisheim
>
> I actually try to get the result of a deployment and unfortunately fail so far.
> I proceed in the following manner:
> I add an deployment, get the action that was created for it, and then
> try to retrieve the result of this action:
> ...
> ServerDeploymentManager manager = ServerDeploymentManager.Factory.create(client);
> InitialDeploymentPlanBuilder builder = manager.newDeploymentPlan();
> builder = builder.add(file.getName(), file).addDeploy();
> DeploymentAction action = builder.getLastAction();
> DeploymentPlan plan = builder.build();
> Future<ServerDeploymentPlanResult> planResult = manager.execute(plan);
> ServerDeploymentPlanResult result = resultFuture.get(timeout,TimeUnit.MILLISECONDS);
> ServerDeploymentActionResult actionResult = result.getDeploymentActionResult(action.getId());
> ....
> ActionResult is always null.
> Behind the scenes the server deployment plan seems to always hold an empty map of
> actionResults (DeploymentPlanResultImpl#actionResults).
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
More information about the jboss-jira
mailing list