Faster retry on database compute exception

This commit is contained in:
M66B
2019-07-29 07:27:57 +02:00
parent a947db12a9
commit 45a9f8cc5f
2 changed files with 3 additions and 3 deletions

View File

@@ -94,7 +94,7 @@ class RoomTrackingLiveData<T> extends LiveData<T> {
// + " live data.", e);
computed = false;
try {
Thread.sleep(5000L);
Thread.sleep(3000L);
} catch (InterruptedException ignored) {
}
}