diff --git a/components/browser/storage-sync/src/main/java/mozilla/components/browser/storage/sync/PlacesStorage.kt b/components/browser/storage-sync/src/main/java/mozilla/components/browser/storage/sync/PlacesStorage.kt index dd9b79a9148..c722eda51ca 100644 --- a/components/browser/storage-sync/src/main/java/mozilla/components/browser/storage/sync/PlacesStorage.kt +++ b/components/browser/storage-sync/src/main/java/mozilla/components/browser/storage/sync/PlacesStorage.kt @@ -100,7 +100,6 @@ abstract class PlacesStorage( } catch (e: PlacesException.OperationInterrupted) { logger.debug("Ignoring expected OperationInterrupted exception for explicit writer interrupt call", e) } catch (e: PlacesException) { - crashReporter?.submitCaughtException(e) logger.warn("Ignoring PlacesException while interrupting writes", e) } } @@ -115,7 +114,6 @@ abstract class PlacesStorage( } catch (e: PlacesException.OperationInterrupted) { logger.debug("Ignoring expected OperationInterrupted exception for explicit reader interrupt call", e) } catch (e: PlacesException) { - crashReporter?.submitCaughtException(e) logger.warn("Ignoring PlacesException while interrupting reads", e) } } diff --git a/docs/changelog.md b/docs/changelog.md index 9564e596426..25ff1df9638 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -11,6 +11,9 @@ permalink: /changelog/ * [Gecko](https://github.com/mozilla-mobile/android-components/blob/main/buildSrc/src/main/java/Gecko.kt) * [Configuration](https://github.com/mozilla-mobile/android-components/blob/main/.config.yml) +* **browser-storage-sync**: + * Stop loading to the crash servers the expected `OperationInterrupted` exceptions for when interrupting in progress reads/writes from Application-Services. [#12557](https://github.com/mozilla-mobile/android-components/issues/12557) + * **feature-media**: * 🚒 Bug fixed [issue #12433](https://github.com/mozilla-mobile/android-components/issues/12433) Prevent media notifications updates that would cause it to flicker or loose the action button.