refactor: prevent updater stop because of errors

This commit is contained in:
2025-10-02 07:40:44 +04:00
parent 69df538467
commit ca713d8d51

View File

@@ -69,9 +69,6 @@ impl ScheduleProvider for Wrapper {
Err(err) => { Err(err) => {
sentry::capture_error(&err); sentry::capture_error(&err);
cancellation_token.cancel();
return Err(err.into());
} }
} }
} }