Skip to content
Snippets Groups Projects
Commit 1c2d045f authored by Johannes Mey's avatar Johannes Mey
Browse files

prevent living partitions that are already scheduled from being looked at again.

parent bb0e0801
No related branches found
No related tags found
No related merge requests found
...@@ -241,6 +241,11 @@ public class ErisMQuATBuilder { ...@@ -241,6 +241,11 @@ public class ErisMQuATBuilder {
for (ERISLivingPartition erisLivingPartition : erisContainer.getPartitionList()) { for (ERISLivingPartition erisLivingPartition : erisContainer.getPartitionList()) {
if (erisLivingPartition.isAdaptationScheduled()) {
logger.debug("Skipping living partition {}, because an adaptation is already scheduled", erisLivingPartition.getLocalId());
continue;
}
// create a new top-level software component and two implementations, one of which enforces direct access // create a new top-level software component and two implementations, one of which enforces direct access
Component component = new Component(); Component component = new Component();
Component directComponent = new Component(); Component directComponent = new Component();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment