mirror of
https://github.com/home-assistant/iOS.git
synced 2026-06-23 14:29:05 -05:00
Running the latest Watch Extension on my device, I'm seeing a lot of kills like: > Termination Reason: CAROUSEL, Background App Refresh watchdog transgression. Exhausted wall time allowance of 15.00 seconds. From the [documentation on `WKApplicationRefreshBackgroundTask`](https://developer.apple.com/documentation/watchkit/wkapplicationrefreshbackgroundtask#), the suggestion is to kick off a background URLSession request and immediately end the app refresh task, allowing the background session code paths to complete the execution. Given we're being killed so often, I'm guessing that part'll work just fine. Fixes #1191.