Skip to content

Commit

Permalink
Increasing default periods for adaptation manager.
Browse files Browse the repository at this point in the history
  • Loading branch information
iridin committed May 1, 2016
1 parent 3a1de4c commit be8dbc3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public void addAdaptation(MAPEAdaptation adaptation){
* @param id
*/
@Process
@PeriodicScheduling(period = 1000) // TODO: parametrizable
@PeriodicScheduling(period = 1000)
public static void reason(@In("id") String id,
@In("adaptations") List<MAPEAdaptation> adaptations) {
for(MAPEAdaptation adaptation : adaptations){
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
*/
public class AdaptationPlugin implements DEECoPlugin {

private long period = 100;
private long period = 10000;

private AdaptationManager adaptationManager;

Expand Down

0 comments on commit be8dbc3

Please sign in to comment.