fix-rollbar (6961/464833464367): ignore webpack module resolution error#596
Open
astashovai wants to merge 1 commit into
Open
fix-rollbar (6961/464833464367): ignore webpack module resolution error#596astashovai wants to merge 1 commit into
astashovai wants to merge 1 commit into
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
s[e].callto the Rollbar exception ignore list to suppress webpack module resolution errorsRollbar
https://app.rollbar.com/a/astashov/fix/item/liftosaur/6961/occurrence/464833464367
Decision
Added to ignore list because this is a webpack module loader error (
s[e].callwheresis the modules registry), not an application code bug. It occurs when the iOS app loads a stale/cached bundle where webpack module IDs have shifted between builds. The error has 228 occurrences, all from the iOS native app (liftosaur://URL scheme), with no user state captured. Not actionable in application code.Root Cause
Webpack module resolution failure — the bundled
app.jstries to calls[e].call(...)where module IDedoesn't exist in the modules objects. This happens when cached/stale bundles contain module IDs that no longer match the current build's module registry, typically due to iOS WebView caching between app updates.Test plan