Skip to content
Snippets Groups Projects
Commit 683a6b18 authored by Alex Reimers's avatar Alex Reimers
Browse files

Call super's startup in MemoryStorageSource.

parent 80ea8442
No related branches found
No related tags found
No related merge requests found
......@@ -40,7 +40,7 @@ public class MemoryStorageSource extends NoSqlStorageSource {
MemoryTable table = tableMap.get(tableName);
if (table == null) {
if (!create)
throw new StorageException("Table does not exist");
throw new StorageException("Table " + tableName + " does not exist");
table = new MemoryTable(tableName);
tableMap.put(tableName, table);
}
......@@ -178,6 +178,7 @@ public class MemoryStorageSource extends NoSqlStorageSource {
@Override
public void startUp(FloodlightModuleContext context) {
super.startUp(context);
executorService = new SynchronousExecutorService();
}
}
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