fix retry

This commit is contained in:
Andrei Vereha 2022-02-28 22:52:57 +01:00
parent 5664805903
commit 84867247bc

View file

@ -681,13 +681,14 @@ class OmnipodDashPumpPlugin @Inject constructor(
if (bolusCanceled && podStateManager.activeCommand != null) { if (bolusCanceled && podStateManager.activeCommand != null) {
var errorGettingStatus: Throwable? = null var errorGettingStatus: Throwable? = null
for (tries in 1..BOLUS_RETRIES) { for (tries in 1..BOLUS_RETRIES) {
getPodStatus() try {
.doOnError { getPodStatus().blockingAwait()
errorGettingStatus = it break
aapsLogger.debug(LTag.PUMP, "waitForBolusDeliveryToComplete errorGettingStatus=$errorGettingStatus") } catch (err: Throwable) {
Thread.sleep(BOLUS_RETRY_INTERVAL_MS) // retry every 2 sec errorGettingStatus = err
} aapsLogger.debug(LTag.PUMP, "waitForBolusDeliveryToComplete errorGettingStatus=$errorGettingStatus")
.blockingSubscribe() Thread.sleep(BOLUS_RETRY_INTERVAL_MS) // retry every 2 sec
}
} }
if (errorGettingStatus != null) { if (errorGettingStatus != null) {
// requestedBolusAmount will be updated later, via pumpSync // requestedBolusAmount will be updated later, via pumpSync