If we have an exception thrown *back to us* complain and ignore it?

pull/89/head
geeksville 2020-07-04 11:33:24 -07:00
rodzic f7ca63ed92
commit bc6fa0b1bb
2 zmienionych plików z 9 dodań i 2 usunięć

Wyświetl plik

@ -426,7 +426,14 @@ class SafeBluetooth(private val context: Context, private val device: BluetoothD
synchronized(workQueue) {
warn("Failing ${workQueue.size} works, because ${ex.message}")
workQueue.forEach {
try {
it.completion.resumeWithException(ex)
} catch (ex: Exception) {
errormsg(
"Mystery exception, why were we informed about our own exceptions?",
ex
)
}
}
workQueue.clear()
stopCurrentWork()

@ -1 +1 @@
Subproject commit 95c5a9aa950f917857a3cc0c7cd84a4a56993032
Subproject commit 99dbf61fad087db910be7f74867a8f14aba877a4