Remove obsolete dom.storage.abort_on_sync_parent_to_child_messages preference and logic
Categories
(Core :: Storage: localStorage & sessionStorage, task)
Tracking
()
Tracking | Status | |
---|---|---|
firefox102 | --- | fixed |
People
(Reporter: jstutte, Assigned: hsingh)
References
Details
Attachments
(2 files, 1 obsolete file)
dom.storage.abort_on_sync_parent_to_child_messages is not needed anymore and always false.
Comment 1•3 years ago
|
||
This is basically like reverting this commit, right?
I don't find any other occurrences of that preference key: https://searchfox.org/mozilla-central/search?q=abort_on_sync_parent_to_child_messages&path=
Assignee | ||
Updated•3 years ago
|
Assignee | ||
Updated•3 years ago
|
Assignee | ||
Comment 2•3 years ago
|
||
Updated•3 years ago
|
Comment 3•3 years ago
|
||
(In reply to Joaquín Serna from comment #1)
This is basically like reverting this commit, right?
I don't find any other occurrences of that preference key: https://searchfox.org/mozilla-central/search?q=abort_on_sync_parent_to_child_messages&path=
Sorry for late reply ...
Yes, that commit, but there were other commits prior to that which needed to be reverted as well.
Comment 5•3 years ago
|
||
bugherder |
Comment 6•3 years ago
|
||
Backed out changeset ebef18795af8 (Bug 1740902) for frequent crash (Bug 1768691) CLOSED TREE
Backout link: https://hg.mozilla.org/integration/autoland/rev/a8c76fab6c0dd73628fc4b2a578ed81ebe808a88
Comment 7•3 years ago
|
||
Backout merged to central: https://hg.mozilla.org/mozilla-central/rev/0a4cbd771ad2
Comment 8•3 years ago
|
||
We don't abort the event loop spinning before the request is actually finished
because that would cause races between the current thread and DOM File thread.
Instead, we send the cancel message to the parent and wait for the request to
finish like in the normal case when the request is successfully finished on
time. OnResponse is called as the final step in both cases.
Assignee | ||
Comment 9•3 years ago
|
||
Updated•3 years ago
|
Comment 10•3 years ago
|
||
Comment 11•3 years ago
|
||
bugherder |
https://hg.mozilla.org/mozilla-central/rev/0490bf75e06c
https://hg.mozilla.org/mozilla-central/rev/0408e5bc277d
Description
•