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/f131e296 Tree: http://git-wip-us.apache.org/repos/asf/stratos/tree/f131e296 Diff: http://git-wip-us.apache.org/repos/asf/stratos/diff/f131e296 Branch: refs/heads/4.1.0-test Commit: f131e2968cc7c7224867a4cc11a615dd72b6f01f Parents: d933d59 Author: reka <[email protected]> Authored: Mon Dec 8 19:20:25 2014 +0530 Committer: sajhak <[email protected]> Committed: Tue Dec 9 11:53:43 2014 +0530 ---------------------------------------------------------------------- .../autoscaler/monitor/component/ParentComponentMonitor.java | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/stratos/blob/f131e296/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);
