src/main/java/org/apache/openejb/cts/deploy/DeployTestUtil.java [907:920]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ProgressObject progress = null;
    try {
      progress = getDeploymentManager().distribute(targets, moduleArchive,
          deploymentPlan);
    } catch (Exception e) {
      e.printStackTrace();
      if (progress.isCancelSupported()) {
        progress.cancel();
      }
      throw e;
    }
    OperationStatus result = commandStatus(targets, progress);
    delay();
    return result;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/apache/openejb/cts/deploy/DeployTestUtil.java [925:938]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ProgressObject progress = null;
    try {
      progress = getDeploymentManager().distribute(targets, moduleArchive,
          deploymentPlan);
    } catch (Exception e) {
      e.printStackTrace();
      if (progress.isCancelSupported()) {
        progress.cancel();
      }
      throw e;
    }
    OperationStatus result = commandStatus(targets, progress);
    delay();
    return result;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



