fixing a build failure due to partial commit
Project: http://git-wip-us.apache.org/repos/asf/stratos/repo Commit: http://git-wip-us.apache.org/repos/asf/stratos/commit/e40d99ff Tree: http://git-wip-us.apache.org/repos/asf/stratos/tree/e40d99ff Diff: http://git-wip-us.apache.org/repos/asf/stratos/diff/e40d99ff Branch: refs/heads/4.1.0-test Commit: e40d99ffaf9d382434db528096c4e1346d05f045 Parents: a22fcc2 Author: reka <[email protected]> Authored: Mon Dec 8 19:20:25 2014 +0530 Committer: reka <[email protected]> Committed: Tue Dec 9 14:02:49 2014 +0530 ---------------------------------------------------------------------- .../autoscaler/monitor/component/ParentComponentMonitor.java | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/stratos/blob/e40d99ff/components/org.apache.stratos.autoscaler/src/main/java/org/apache/stratos/autoscaler/monitor/component/ParentComponentMonitor.java ---------------------------------------------------------------------- diff --git a/components/org.apache.stratos.autoscaler/src/main/java/org/apache/stratos/autoscaler/monitor/component/ParentComponentMonitor.java b/components/org.apache.stratos.autoscaler/src/main/java/org/apache/stratos/autoscaler/monitor/component/ParentComponentMonitor.java index 413df51..f893b80 100644 --- a/components/org.apache.stratos.autoscaler/src/main/java/org/apache/stratos/autoscaler/monitor/component/ParentComponentMonitor.java +++ b/components/org.apache.stratos.autoscaler/src/main/java/org/apache/stratos/autoscaler/monitor/component/ParentComponentMonitor.java @@ -142,8 +142,10 @@ public abstract class ParentComponentMonitor extends Monitor { * by traversing to find the terminated dependencies. * it will get invoked when start a child monitor on termination of a sub tree */ + public void startDependencyOnTermination(String instanceId) throws TopologyInConsistentException, MonitorNotFoundException, PolicyValidationException, PartitionValidationException { + //start the first dependency which went to terminated List<ApplicationChildContext> applicationContexts = this.startupDependencyTree. getStarAbleDependenciesByTermination(this, instanceId);
