Skip to content
Snippets Groups Projects
Commit 8f2f8fea authored by Srinivasan Ramasubramanian's avatar Srinivasan Ramasubramanian
Browse files

Option to flush or not flush flow tables on a switch through properties file.

parent 8dc731c2
No related branches found
No related tags found
No related merge requests found
......@@ -1795,7 +1795,17 @@ public class Controller implements IFloodlightProviderService,
this.roleChanger = new RoleChanger(this);
initVendorMessages();
this.systemStartTime = System.currentTimeMillis();
}
String option = configParams.get("flushSwitchesOnReconnect");
if (option != null && option.equalsIgnoreCase("true")) {
this.setAlwaysClearFlowsOnSwAdd(true);
log.info("Flush switches on reconnect -- Enabled.");
} else {
this.setAlwaysClearFlowsOnSwAdd(false);
log.info("Flush switches on reconnect -- Disabled");
}
}
/**
* Startup all of the controller's components
......@@ -2014,5 +2024,4 @@ public class Controller implements IFloodlightProviderService,
switchDescSortedList.add(description);
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment