Don't close connection when other cmds are about to be run.
This commit is contained in:
parent
f5ef666061
commit
8bc4cd255a
|
@ -118,8 +118,12 @@ public class ComboPlugin implements PluginBase, PumpInterface {
|
||||||
|
|
||||||
private CommandResult readPumpState(boolean keepConnectionOpen) {
|
private CommandResult readPumpState(boolean keepConnectionOpen) {
|
||||||
CommandResult commandResult = runCommand(new ReadStateCommand(), keepConnectionOpen);
|
CommandResult commandResult = runCommand(new ReadStateCommand(), keepConnectionOpen);
|
||||||
pumpState = commandResult.state;
|
if (commandResult.success) {
|
||||||
log.debug("Pump state: " + commandResult.state);
|
pumpState = commandResult.state;
|
||||||
|
log.debug("Pump state: " + commandResult.state);
|
||||||
|
} else {
|
||||||
|
log.warn("Reading pump status failed: " + commandResult.message);
|
||||||
|
}
|
||||||
return commandResult;
|
return commandResult;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -376,7 +380,7 @@ public class ComboPlugin implements PluginBase, PumpInterface {
|
||||||
percent = rounded;
|
percent = rounded;
|
||||||
}
|
}
|
||||||
MainApp.bus().post(new EventPumpStatusChanged(MainApp.sResources.getString(R.string.settingtempbasal)));
|
MainApp.bus().post(new EventPumpStatusChanged(MainApp.sResources.getString(R.string.settingtempbasal)));
|
||||||
CommandResult commandResult = runCommand(new SetTbrCommand(percent, durationInMinutes), false);
|
CommandResult commandResult = runCommand(new SetTbrCommand(percent, durationInMinutes), true);
|
||||||
if (commandResult.enacted) {
|
if (commandResult.enacted) {
|
||||||
TemporaryBasal tempStart = new TemporaryBasal(System.currentTimeMillis());
|
TemporaryBasal tempStart = new TemporaryBasal(System.currentTimeMillis());
|
||||||
tempStart.durationInMinutes = durationInMinutes;
|
tempStart.durationInMinutes = durationInMinutes;
|
||||||
|
|
Loading…
Reference in a new issue