Fixing error for null delay and duration values being sent to Command_Config table when enabling debugging

This commit is contained in:
Mike Hansen
2021-02-17 17:13:16 -05:00
parent 0021d52624
commit aefc799975

View File

@@ -58,7 +58,7 @@ public class OvsdbDao extends OvsdbDaoBase {
public void configureCommands(OvsdbClient ovsdbClient, String startdebugengineapcommand,
Map<String, String> payload, long l, long defaultCommandDurationSec) {
ovsdbCommand.configureCommands(ovsdbClient, startdebugengineapcommand, payload, null, null);
ovsdbCommand.configureCommands(ovsdbClient, startdebugengineapcommand, payload, l, defaultCommandDurationSec);
}
public void configureFirmwareDownload(OvsdbClient ovsdbClient, String apId, String firmwareUrl,