flowvisor icon indicating copy to clipboard operation
flowvisor copied to clipboard

[BUG] SwitchImpl.pushFlowMod() throw NullPointerException

Open czeni opened this issue 11 years ago • 0 comments

ps = conn.prepareStatement(SCOOKIE); 

should change to

ps = conn.prepareStatement(SCOOKIE, Statement.RETURN_GENERATED_KEYS);

else

set = ps.getGeneratedKeys();
set.next();

will throw NullPointerException

czeni avatar Apr 16 '14 11:04 czeni