Skip to content
Snippets Groups Projects
Commit 2f945459 authored by abat's avatar abat
Browse files

Merge into master from pull request #247:

Increase CONSISTENT_TIMEOUT to 30 seconds in attachment point maintenance. (https://github.com/floodlight/floodlight/pull/247)
parents 060486b7 4031b33b
No related branches found
No related tags found
No related merge requests found
......@@ -28,10 +28,9 @@ public class AttachmentPoint {
// Timeout for moving attachment points from OF/broadcast
// domain to another.
protected static long NBD_TO_BD_TIMEDIFF_MS = 300000; // 5 minutes
public static final long OPENFLOW_TO_EXTERNAL_TIMEOUT = 5000; // 5 seconds
public static final long EXTERNAL_TO_EXTERNAL_TIMEOUT = 5000; // 5 seconds
public static final long CONSISTENT_TIMEOUT = 5000; // 5 seconds
public static final long CONSISTENT_TIMEOUT = 30000; // 30 seconds
public AttachmentPoint(long sw, short port, long lastSeen) {
super();
......
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