[QM_TRY] Failures in dom/localstorage/ActorsParent.cpp:CreateStorageConnection
Categories
(Core :: Storage: Quota Manager, defect, P3)
Tracking
()
People
(Reporter: jstutte, Unassigned, NeedInfo)
References
(Depends on 2 open bugs, Blocks 2 open bugs, )
Details
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 1 | 1 | dom/localstorage/ActorsParent.cpp:CreateStorageConnection | dom/localstorage/ActorsParent.cpp#499:NS_ERROR_FILE_ACCESS_DENIED <- dom/localstorage/ActorsParent.cpp#8117:NS_ERROR_FILE_ACCESS_DENIED <- dom/localstorage/ActorsParent.cpp#8129:NS_ERROR_FILE_ACCESS_DENIED <- dom/localstorage/ActorsParent.cpp#8137:NS_ERROR_FILE_ACCESS_DENIED <- dom/quota/ActorsParent.cpp#4871:NS_ERROR_FILE_ACCESS_DENIED <- dom/quota/ActorsParent.cpp#4943:NS_ERROR_FILE_ACCESS_DENIED <- dom/quota/ActorsParent.cpp#4947:NS_ERROR_FILE_ACCESS_DENIED <- dom/quota/ActorsParent.cpp#4950:NS_ERROR_FILE_ACCESS_DENIED |
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 1 | 2 | dom/localstorage/ActorsParent.cpp:CreateStorageConnection | dom/localstorage/ActorsParent.cpp#499:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#8117:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#8129:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#8137:NS_ERROR_STORAGE_BUSY <- dom/quota/ActorsParent.cpp#4871:NS_ERROR_STORAGE_BUSY <- dom/quota/ActorsParent.cpp#4943:NS_ERROR_STORAGE_BUSY <- dom/quota/ActorsParent.cpp#4947:NS_ERROR_STORAGE_BUSY <- dom/quota/ActorsParent.cpp#4950:NS_ERROR_STORAGE_BUSY |
Reporter | ||
Comment 1•2 years ago
|
||
NS_ERROR_STORAGE_BUSY
translates to SQLITE_BUSY
. IsDatabaseCorruptionError
gives false then and we just let the error pop up until QuotaManager::InitializeOrigin
. We could consider instead a timed retry in that case?
Comment hidden (obsolete) |
Reporter | ||
Comment 3•2 years ago
|
||
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 1 | 1 | dom/localstorage/ActorsParent.cpp:CreateStorageConnection | dom/localstorage/ActorsParent.cpp#505:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#8128:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#8140:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#8148:NS_ERROR_STORAGE_BUSY <- dom/quota/ActorsParent.cpp#4876:NS_ERROR_STORAGE_BUSY <- dom/quota/ActorsParent.cpp#4948:NS_ERROR_STORAGE_BUSY |
Reporter | ||
Comment 4•2 years ago
|
||
From this assert it seems that we can use the storage DB from two different, concurrent threads. And SQLITE_BUSY can be a side effect of this, with three possible sub-causes:
#define SQLITE_BUSY_RECOVERY (SQLITE_BUSY | (1<<8))
#define SQLITE_BUSY_SNAPSHOT (SQLITE_BUSY | (2<<8))
#define SQLITE_BUSY_TIMEOUT (SQLITE_BUSY | (3<<8))
Unfortunately we filter out and ignore the extended error codes. But in any case this looks like something we could/should handle with a retry?
We see this error in several places and all of them would need a retry handling.
Comment hidden (obsolete) |
Reporter | ||
Comment 6•2 years ago
|
||
Reporter | ||
Comment 7•2 years ago
|
||
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 1 | 1 | dom/localstorage/ActorsParent.cpp:CreateStorageConnection | dom/localstorage/ActorsParent.cpp#549:NS_ERROR_STORAGE_IOERR <- dom/localstorage/ActorsParent.cpp#6928:NS_ERROR_STORAGE_IOERR |
Reporter | ||
Comment 8•2 years ago
|
||
Reporter | ||
Comment 9•2 years ago
|
||
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 1 | 2 | dom/localstorage/ActorsParent.cpp:CreateStorageConnection | dom/localstorage/ActorsParent.cpp#518:NS_ERROR_FILE_ACCESS_DENIED <- dom/localstorage/ActorsParent.cpp#6938:NS_ERROR_FILE_ACCESS_DENIED |
Reporter | ||
Comment 10•2 years ago
|
||
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 1 | 4 | dom/localstorage/ActorsParent.cpp:CreateStorageConnection | dom/localstorage/ActorsParent.cpp#518:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#8182:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#8194:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#8202:NS_ERROR_STORAGE_BUSY <- dom/quota/ActorsParent.cpp#4896:NS_ERROR_STORAGE_BUSY <- dom/quota/ActorsParent.cpp#4968:NS_ERROR_STORAGE_BUSY <- dom/quota/ActorsParent.cpp#4764:NS_ERROR_STORAGE_BUSY <- dom/quota/ActorsParent.cpp#4764:NS_ERROR_STORAGE_BUSY <- dom/quota/ActorsParent.cpp#4787:NS_ERROR_STORAGE_BUSY <- dom/quota/ActorsParent.cpp#4249:NS_ERROR_STORAGE_BUSY <- dom/quota/ActorsParent.cpp#6278:NS_ERROR_STORAGE_BUSY |
1 | 1 | 1 | dom/localstorage/ActorsParent.cpp:CreateStorageConnection | dom/localstorage/ActorsParent.cpp#518:NS_ERROR_FILE_ACCESS_DENIED <- dom/localstorage/ActorsParent.cpp#6938:NS_ERROR_FILE_ACCESS_DENIED |
Reporter | ||
Comment 11•2 years ago
|
||
For NS_ERROR_STORAGE_BUSY
, see bug 1704433 comment 12.
Reporter | ||
Comment 12•2 years ago
|
||
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 1 | 1 | dom/localstorage/ActorsParent.cpp:CreateStorageConnection | dom/localstorage/ActorsParent.cpp#547:NS_ERROR_STORAGE_IOERR <- dom/localstorage/ActorsParent.cpp#6936:NS_ERROR_STORAGE_IOERR |
Comment 13•2 years ago
|
||
Taken from Attachment 9236979 [details].
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 1 | 14 | dom/localstorage/ActorsParent.cpp:CreateStorageConnection | dom/localstorage/ActorsParent.cpp#516:NS_ERROR_FILE_ACCESS_DENIED <- dom/localstorage/ActorsParent.cpp#8182:NS_ERROR_FILE_ACCESS_DENIED <- dom/localstorage/ActorsParent.cpp#8194:NS_ERROR_FILE_ACCESS_DENIED <- dom/localstorage/ActorsParent.cpp#8202:NS_ERROR_FILE_ACCESS_DENIED <- dom/quota/ActorsParent.cpp#4902:NS_ERROR_FILE_ACCESS_DENIED <- dom/quota/ActorsParent.cpp#4974:NS_ERROR_FILE_ACCESS_DENIED <- dom/quota/ActorsParent.cpp#4770:NS_ERROR_FILE_ACCESS_DENIED <- dom/quota/ActorsParent.cpp#4770:NS_ERROR_FILE_ACCESS_DENIED <- dom/quota/ActorsParent.cpp#4793:NS_ERROR_FILE_ACCESS_DENIED |
1 | 1 | 1 | dom/localstorage/ActorsParent.cpp:CreateStorageConnection | dom/localstorage/ActorsParent.cpp#516:NS_ERROR_FILE_ACCESS_DENIED <- dom/localstorage/ActorsParent.cpp#6936:NS_ERROR_FILE_ACCESS_DENIED |
Comment 14•2 years ago
|
||
Taken from Attachment 9237504 [details].
Comment 15•2 years ago
|
||
Taken from Attachment 9238538 [details].
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 1 | 6 | dom/localstorage/ActorsParent.cpp:CreateStorageConnection | dom/localstorage/ActorsParent.cpp#516:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#8182:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#8194:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#8202:NS_ERROR_STORAGE_BUSY <- dom/quota/ActorsParent.cpp#4902:NS_ERROR_STORAGE_BUSY <- dom/quota/ActorsParent.cpp#4974:NS_ERROR_STORAGE_BUSY <- dom/quota/ActorsParent.cpp#4770:NS_ERROR_STORAGE_BUSY <- dom/quota/ActorsParent.cpp#4770:NS_ERROR_STORAGE_BUSY <- dom/quota/ActorsParent.cpp#4793:NS_ERROR_STORAGE_BUSY |
1 | 1 | 1 | dom/localstorage/ActorsParent.cpp:CreateStorageConnection | dom/localstorage/ActorsParent.cpp#547:NS_ERROR_FILE_NO_DEVICE_SPACE <- dom/localstorage/ActorsParent.cpp#6937:NS_ERROR_FILE_NO_DEVICE_SPACE |
Comment 16•2 years ago
|
||
Taken from Attachment 9239371 [details].
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 1 | 2 | dom/localstorage/ActorsParent.cpp:CreateStorageConnection | dom/localstorage/ActorsParent.cpp#547:NS_ERROR_STORAGE_IOERR <- dom/localstorage/ActorsParent.cpp#6937:NS_ERROR_STORAGE_IOERR |
Comment 17•2 years ago
|
||
Taken from Attachment 9240325 [details].
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 1 | 1 | dom/localstorage/ActorsParent.cpp:CreateStorageConnection | dom/localstorage/ActorsParent.cpp#547:NS_ERROR_STORAGE_IOERR <- dom/localstorage/ActorsParent.cpp#6937:NS_ERROR_STORAGE_IOERR |
Comment 18•2 years ago
|
||
Taken from Attachment 9241622 [details].
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 1 | 2 | dom/localstorage/ActorsParent.cpp:CreateStorageConnection | dom/localstorage/ActorsParent.cpp#516:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#6937:NS_ERROR_STORAGE_BUSY |
1 | 1 | 1 | dom/localstorage/ActorsParent.cpp:CreateStorageConnection | dom/localstorage/ActorsParent.cpp#516:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#6937:NS_ERROR_STORAGE_BUSY |
1 | 1 | 1 | dom/localstorage/ActorsParent.cpp:CreateStorageConnection | dom/localstorage/ActorsParent.cpp#516:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#6937:NS_ERROR_STORAGE_BUSY |
1 | 1 | 1 | dom/localstorage/ActorsParent.cpp:CreateStorageConnection | dom/localstorage/ActorsParent.cpp#516:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#6937:NS_ERROR_STORAGE_BUSY |
Comment 19•2 years ago
|
||
Taken from Attachment 9242094 [details].
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 2 | 3 | dom/localstorage/ActorsParent.cpp:CreateStorageConnection | dom/localstorage/ActorsParent.cpp#516:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#6937:NS_ERROR_STORAGE_BUSY |
1 | 1 | 1 | dom/localstorage/ActorsParent.cpp:CreateStorageConnection | dom/localstorage/ActorsParent.cpp#516:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#6937:NS_ERROR_STORAGE_BUSY |
1 | 1 | 1 | dom/localstorage/ActorsParent.cpp:CreateStorageConnection | dom/localstorage/ActorsParent.cpp#516:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#6937:NS_ERROR_STORAGE_BUSY |
1 | 1 | 1 | dom/localstorage/ActorsParent.cpp:CreateStorageConnection | dom/localstorage/ActorsParent.cpp#547:NS_ERROR_FILE_NO_DEVICE_SPACE <- dom/localstorage/ActorsParent.cpp#6937:NS_ERROR_FILE_NO_DEVICE_SPACE |
Comment 20•2 years ago
|
||
Taken from Attachment 9243039 [details].
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 1 | 3 | dom/localstorage/ActorsParent.cpp:CreateStorageConnection | dom/localstorage/ActorsParent.cpp#518:NS_ERROR_FILE_ACCESS_DENIED <- dom/localstorage/ActorsParent.cpp#6956:NS_ERROR_FILE_ACCESS_DENIED |
1 | 1 | 1 | dom/localstorage/ActorsParent.cpp:CreateStorageConnection | dom/localstorage/ActorsParent.cpp#517:NS_ERROR_FILE_ACCESS_DENIED <- dom/localstorage/ActorsParent.cpp#6938:NS_ERROR_FILE_ACCESS_DENIED |
1 | 1 | 1 | dom/localstorage/ActorsParent.cpp:CreateStorageConnection | dom/localstorage/ActorsParent.cpp#548:NS_ERROR_FILE_NO_DEVICE_SPACE <- dom/localstorage/ActorsParent.cpp#6938:NS_ERROR_FILE_NO_DEVICE_SPACE |
Comment 21•2 years ago
|
||
Taken from Attachment 9247122 [details].
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 1 | 5 | dom/localstorage/ActorsParent.cpp:CreateStorageConnection | dom/localstorage/ActorsParent.cpp#518:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#8212:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#8225:NS_ERROR_STORAGE_BUSY <- dom/localstorage/ActorsParent.cpp#8233:NS_ERROR_STORAGE_BUSY <- dom/quota/ActorsParent.cpp#5057:NS_ERROR_STORAGE_BUSY <- dom/quota/ActorsParent.cpp#5131:NS_ERROR_STORAGE_BUSY <- dom/quota/ActorsParent.cpp#4919:NS_ERROR_STORAGE_BUSY <- dom/quota/ActorsParent.cpp#4919:NS_ERROR_STORAGE_BUSY <- dom/quota/ActorsParent.cpp#4944:NS_ERROR_STORAGE_BUSY |
Comment 22•1 year ago
|
||
Taken from Attachment 9248252 [details].
Comment 23•1 year ago
|
||
Taken from Attachment 9249782 [details].
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 1 | 2 | dom/localstorage/ActorsParent.cpp:CreateStorageConnection | dom/localstorage/ActorsParent.cpp#518:NS_ERROR_FILE_ACCESS_DENIED <- dom/localstorage/ActorsParent.cpp#6960:NS_ERROR_FILE_ACCESS_DENIED |
1 | 1 | 1 | dom/localstorage/ActorsParent.cpp:CreateStorageConnection | dom/localstorage/ActorsParent.cpp#517:NS_ERROR_STORAGE_IOERR <- dom/localstorage/ActorsParent.cpp#518:NS_ERROR_STORAGE_IOERR <- dom/localstorage/ActorsParent.cpp#6960:NS_ERROR_STORAGE_IOERR |
Comment 24•1 year ago
|
||
Taken from Attachment 9253914 [details].
Comment 25•1 year ago
|
||
Taken from Attachment 9255050 [details].
Comment 26•1 year ago
|
||
Taken from Attachment 9255717 [details].
Comment 27•1 year ago
|
||
Taken from Attachment 9257342 [details].
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 1 | 1 | dom/localstorage/ActorsParent.cpp:CreateStorageConnection | dom/localstorage/ActorsParent.cpp#539:NS_ERROR_FAILURE <- dom/localstorage/ActorsParent.cpp#544:NS_ERROR_FAILURE <- dom/localstorage/ActorsParent.cpp#8239:NS_ERROR_FAILURE <- dom/localstorage/ActorsParent.cpp#8252:NS_ERROR_FAILURE <- dom/localstorage/ActorsParent.cpp#8260:NS_ERROR_FAILURE <- dom/quota/ActorsParent.cpp#5036:NS_ERROR_FAILURE <- dom/quota/ActorsParent.cpp#5110:NS_ERROR_FAILURE <- dom/quota/ActorsParent.cpp#4898:NS_ERROR_FAILURE <- dom/quota/ActorsParent.cpp#4898:NS_ERROR_FAILURE <- dom/quota/ActorsParent.cpp#4923:NS_ERROR_FAILURE |
Comment 28•1 year ago
|
||
Taken from Attachment 9258408 [details].
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 1 | 1 | dom/localstorage/ActorsParent.cpp:CreateStorageConnection | dom/localstorage/ActorsParent.cpp#640:NS_ERROR_FILE_NO_DEVICE_SPACE <- dom/localstorage/ActorsParent.cpp#6968:NS_ERROR_FILE_NO_DEVICE_SPACE |
Comment 29•1 year ago
|
||
Taken from Attachment 9258943 [details].
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 1 | 4 | dom/localstorage/ActorsParent.cpp:CreateStorageConnection | dom/localstorage/ActorsParent.cpp#621:NS_ERROR_STORAGE_CONSTRAINT <- dom/localstorage/ActorsParent.cpp#6968:NS_ERROR_STORAGE_CONSTRAINT |
1 | 1 | 1 | dom/localstorage/ActorsParent.cpp:CreateStorageConnection | dom/localstorage/ActorsParent.cpp#640:NS_ERROR_FILE_NO_DEVICE_SPACE <- dom/localstorage/ActorsParent.cpp#6968:NS_ERROR_FILE_NO_DEVICE_SPACE |
Comment 30•1 year ago
|
||
Taken from Attachment 9259961 [details].
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 1 | 3 | dom/localstorage/ActorsParent.cpp:CreateStorageConnection | dom/localstorage/ActorsParent.cpp#640:NS_ERROR_FILE_NO_DEVICE_SPACE <- dom/localstorage/ActorsParent.cpp#6968:NS_ERROR_FILE_NO_DEVICE_SPACE |
1 | 1 | 1 | dom/localstorage/ActorsParent.cpp:CreateStorageConnection | dom/localstorage/ActorsParent.cpp#640:NS_ERROR_FILE_NO_DEVICE_SPACE <- dom/localstorage/ActorsParent.cpp#6968:NS_ERROR_FILE_NO_DEVICE_SPACE |
Comment 31•1 year ago
|
||
Taken from Attachment 9261549 [details].
Comment 32•1 year ago
|
||
Taken from Attachment 9262645 [details].
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 1 | 1 | dom/localstorage/ActorsParent.cpp:CreateStorageConnection | dom/localstorage/ActorsParent.cpp#640:NS_ERROR_FILE_NO_DEVICE_SPACE <- dom/localstorage/ActorsParent.cpp#6986:NS_ERROR_FILE_NO_DEVICE_SPACE |
Comment 33•1 year ago
|
||
Taken from Attachment 9263325 [details].
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 1 | 1 | dom/localstorage/ActorsParent.cpp:CreateStorageConnection | dom/localstorage/ActorsParent.cpp#575:NS_ERROR_STORAGE_IOERR <- dom/localstorage/ActorsParent.cpp#6986:NS_ERROR_STORAGE_IOERR |
1 | 1 | 1 | dom/localstorage/ActorsParent.cpp:CreateStorageConnection | dom/localstorage/ActorsParent.cpp#575:NS_ERROR_STORAGE_IOERR <- dom/localstorage/ActorsParent.cpp#6986:NS_ERROR_STORAGE_IOERR |
Comment 34•1 year ago
|
||
Taken from Attachment 9263751 [details].
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 1 | 3 | dom/localstorage/ActorsParent.cpp:CreateStorageConnection | dom/localstorage/ActorsParent.cpp#575:NS_ERROR_STORAGE_IOERR <- dom/localstorage/ActorsParent.cpp#6986:NS_ERROR_STORAGE_IOERR |
1 | 1 | 1 | dom/localstorage/ActorsParent.cpp:CreateStorageConnection | dom/localstorage/ActorsParent.cpp#640:NS_ERROR_FILE_NO_DEVICE_SPACE <- dom/localstorage/ActorsParent.cpp#6986:NS_ERROR_FILE_NO_DEVICE_SPACE |
Comment 35•1 year ago
|
||
Taken from Attachment 9264398 [details].
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 1 | 3 | dom/localstorage/ActorsParent.cpp:CreateStorageConnection | dom/localstorage/ActorsParent.cpp#621:NS_ERROR_STORAGE_CONSTRAINT <- dom/localstorage/ActorsParent.cpp#6986:NS_ERROR_STORAGE_CONSTRAINT |
Comment 36•1 year ago
|
||
Taken from Attachment 9265725 [details].
Comment 37•1 year ago
|
||
Taken from Attachment 9266276 [details].
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 1 | 2 | dom/localstorage/ActorsParent.cpp:CreateStorageConnection | dom/localstorage/ActorsParent.cpp#544:NS_ERROR_FILE_ACCESS_DENIED <- dom/localstorage/ActorsParent.cpp#7055:NS_ERROR_FILE_ACCESS_DENIED |
Comment 38•1 year ago
|
||
Taken from Attachment 9268245 [details].
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 1 | 1 | dom/localstorage/ActorsParent.cpp:CreateStorageConnection | dom/localstorage/ActorsParent.cpp#584:NS_ERROR_FILE_NO_DEVICE_SPACE <- dom/localstorage/ActorsParent.cpp#7102:NS_ERROR_FILE_NO_DEVICE_SPACE |
Comment 39•1 year ago
|
||
Taken from Attachment 9268673 [details].
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 1 | 2 | dom/localstorage/ActorsParent.cpp:CreateStorageConnection | dom/localstorage/ActorsParent.cpp#584:NS_ERROR_STORAGE_IOERR <- dom/localstorage/ActorsParent.cpp#7102:NS_ERROR_STORAGE_IOERR |
Comment 40•1 year ago
|
||
Taken from Attachment 9269668 [details].
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 1 | 1 | dom/localstorage/ActorsParent.cpp:CreateStorageConnection | dom/localstorage/ActorsParent.cpp#649:NS_ERROR_FILE_NO_DEVICE_SPACE <- dom/localstorage/ActorsParent.cpp#7102:NS_ERROR_FILE_NO_DEVICE_SPACE |
Comment 41•1 year ago
|
||
Taken from Attachment 9270720 [details].
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 1 | 1 | dom/localstorage/ActorsParent.cpp:CreateStorageConnection | dom/localstorage/ActorsParent.cpp#552:NS_ERROR_STORAGE_IOERR <- dom/localstorage/ActorsParent.cpp#553:NS_ERROR_STORAGE_IOERR <- dom/localstorage/ActorsParent.cpp#7102:NS_ERROR_STORAGE_IOERR |
1 | 1 | 1 | dom/localstorage/ActorsParent.cpp:CreateStorageConnection | dom/localstorage/ActorsParent.cpp#649:NS_ERROR_FILE_NO_DEVICE_SPACE <- dom/localstorage/ActorsParent.cpp#7102:NS_ERROR_FILE_NO_DEVICE_SPACE |
Comment 42•1 year ago
|
||
Taken from Attachment 9273265 [details].
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 1 | 1 | dom/localstorage/ActorsParent.cpp:CreateStorageConnection | dom/localstorage/ActorsParent.cpp#647:NS_ERROR_FILE_NO_DEVICE_SPACE <- dom/localstorage/ActorsParent.cpp#7073:NS_ERROR_FILE_NO_DEVICE_SPACE |
Comment 43•11 months ago
|
||
Taken from Attachment 9273630 [details].
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 1 | 1 | dom/localstorage/ActorsParent.cpp:CreateStorageConnection | dom/localstorage/ActorsParent.cpp#647:NS_ERROR_FILE_CORRUPTED <- dom/localstorage/ActorsParent.cpp#7073:NS_ERROR_FILE_CORRUPTED |
Comment 44•11 months ago
|
||
Taken from Attachment 9274666 [details].
Comment 45•11 months ago
|
||
Taken from Attachment 9275142 [details].
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 1 | 1 | dom/localstorage/ActorsParent.cpp:CreateStorageConnection | dom/localstorage/ActorsParent.cpp#550:NS_ERROR_STORAGE_IOERR <- dom/localstorage/ActorsParent.cpp#551:NS_ERROR_STORAGE_IOERR <- dom/localstorage/ActorsParent.cpp#7073:NS_ERROR_STORAGE_IOERR |
Comment 46•10 months ago
|
||
Taken from Attachment 9277802 [details].
Clients | Sessions | Hits | Anchor | Stack |
---|---|---|---|---|
1 | 1 | 1 | dom/localstorage/ActorsParent.cpp:CreateStorageConnection | dom/localstorage/ActorsParent.cpp#551:NS_ERROR_FILE_ACCESS_DENIED <- dom/localstorage/ActorsParent.cpp#7073:NS_ERROR_FILE_ACCESS_DENIED |
Comment 47•10 months ago
|
||
Taken from Attachment 9282062 [details].
Clients | Sessions | Hits | Anchor (Context) | Stack |
---|---|---|---|---|
1 | 1 | 1 | dom/localstorage/ActorsParent.cpp:CreateStorageConnection (dom::localstorage::FirstOriginInitializationAttempt::Datastore) | dom/localstorage/ActorsParent.cpp#647:NS_ERROR_STORAGE_IOERR <- dom/localstorage/ActorsParent.cpp#7073:NS_ERROR_STORAGE_IOERR |
Comment 48•9 months ago
|
||
Taken from Attachment 9285537 [details].
Clients | Sessions | Hits | Anchor (Context) | Stack |
---|---|---|---|---|
1 | 1 | 1 | dom/localstorage/ActorsParent.cpp:CreateStorageConnection (dom::localstorage::FirstOriginInitializationAttempt::Datastore) | dom/localstorage/ActorsParent.cpp#582:NS_ERROR_FILE_NO_DEVICE_SPACE <- dom/localstorage/ActorsParent.cpp#7073:NS_ERROR_FILE_NO_DEVICE_SPACE |
Comment 49•8 months ago
|
||
Taken from Attachment 9286416 [details].
Clients | Sessions | Hits | Anchor (Context) | Stack |
---|---|---|---|---|
1 | 1 | 1 | dom/localstorage/ActorsParent.cpp:CreateStorageConnection (dom::localstorage::FirstOriginInitializationAttempt::Datastore) | dom/localstorage/ActorsParent.cpp#647:NS_ERROR_FILE_NO_DEVICE_SPACE <- dom/localstorage/ActorsParent.cpp#7073:NS_ERROR_FILE_NO_DEVICE_SPACE |
Comment 50•8 months ago
|
||
Taken from Attachment 9290471 [details].
Clients | Sessions | Hits | Anchor (Context) | Stack |
---|---|---|---|---|
1 | 1 | 1 | dom/localstorage/ActorsParent.cpp:CreateStorageConnection (dom::localstorage::FirstOriginInitializationAttempt::Datastore) | dom/localstorage/ActorsParent.cpp#582:NS_ERROR_STORAGE_IOERR <- dom/localstorage/ActorsParent.cpp#7073:NS_ERROR_STORAGE_IOERR |
1 | 1 | 1 | dom/localstorage/ActorsParent.cpp:CreateStorageConnection (dom::localstorage::FirstOriginInitializationAttempt::Datastore) | dom/localstorage/ActorsParent.cpp#644:NS_ERROR_STORAGE_IOERR <- dom/localstorage/ActorsParent.cpp#7073:NS_ERROR_STORAGE_IOERR |
Comment 51•6 months ago
|
||
Taken from Attachment 9295797 [details].
Clients | Sessions | Hits | Anchor (Context) | Stack |
---|---|---|---|---|
1 | 1 | 1 | dom/localstorage/ActorsParent.cpp:CreateStorageConnection (dom::localstorage::FirstOriginInitializationAttempt::Datastore) | dom/localstorage/ActorsParent.cpp#644:NS_ERROR_STORAGE_IOERR <- dom/localstorage/ActorsParent.cpp#7073:NS_ERROR_STORAGE_IOERR |
Comment 52•5 months ago
|
||
Taken from Attachment 9300634 [details].
Clients | Sessions | Hits | Anchor (Context) | Stack |
---|---|---|---|---|
1 | 1 | 1 | dom/localstorage/ActorsParent.cpp:CreateStorageConnection (dom::localstorage::FirstOriginInitializationAttempt::Datastore) | dom/localstorage/ActorsParent.cpp#582:NS_ERROR_STORAGE_IOERR <- dom/localstorage/ActorsParent.cpp#7073:NS_ERROR_STORAGE_IOERR |
Comment 53•3 months ago
|
||
Taken from Attachment 9311415 [details].
Clients | Sessions | Hits | Anchor (Context) | Stack |
---|---|---|---|---|
1 | 1 | 1 | dom/localstorage/ActorsParent.cpp:CreateStorageConnection (dom::localstorage::FirstOriginInitializationAttempt::Datastore) | dom/localstorage/ActorsParent.cpp#582:NS_ERROR_STORAGE_IOERR <- dom/localstorage/ActorsParent.cpp#7073:NS_ERROR_STORAGE_IOERR |
Comment 54•2 months ago
|
||
Taken from Attachment 9315661 [details].
Clients | Sessions | Hits | Anchor (Context) | Stack |
---|---|---|---|---|
1 | 1 | 2 | dom/localstorage/ActorsParent.cpp:CreateStorageConnection (dom::localstorage::FirstOriginInitializationAttempt::Datastore) | dom/localstorage/ActorsParent.cpp#628:NS_ERROR_STORAGE_CONSTRAINT <- dom/localstorage/ActorsParent.cpp#7073:NS_ERROR_STORAGE_CONSTRAINT |
Comment 55•1 month ago
|
||
Taken from Attachment 9318259 [details].
Clients | Sessions | Hits | Anchor (Context) | Stack |
---|---|---|---|---|
1 | 1 | 1 | dom/localstorage/ActorsParent.cpp:CreateStorageConnection (dom::localstorage::FirstOriginInitializationAttempt::Datastore) | dom/localstorage/ActorsParent.cpp#582:NS_ERROR_FILE_ACCESS_DENIED <- dom/localstorage/ActorsParent.cpp#7073:NS_ERROR_FILE_ACCESS_DENIED |
1 | 1 | 1 | dom/localstorage/ActorsParent.cpp:CreateStorageConnection (dom::localstorage::FirstOriginInitializationAttempt::Datastore) | dom/localstorage/ActorsParent.cpp#550:NS_ERROR_FILE_ACCESS_DENIED <- dom/localstorage/ActorsParent.cpp#551:NS_ERROR_FILE_ACCESS_DENIED <- dom/localstorage/ActorsParent.cpp#7073:NS_ERROR_FILE_ACCESS_DENIED |
Comment 56•1 month ago
|
||
Taken from Attachment 9320833 [details].
Comment 57•19 days ago
|
||
Taken from Attachment 9322825 [details].
Clients | Sessions | Hits | Anchor (Context) | Stack |
---|---|---|---|---|
1 | 1 | 1 | dom/localstorage/ActorsParent.cpp:CreateStorageConnection (dom::localstorage::FirstOriginInitializationAttempt::Datastore) | dom/localstorage/ActorsParent.cpp#647:NS_ERROR_FILE_ACCESS_DENIED <- dom/localstorage/ActorsParent.cpp#7073:NS_ERROR_FILE_ACCESS_DENIED |
1 | 1 | 1 | dom/localstorage/ActorsParent.cpp:CreateStorageConnection (dom::localstorage::FirstOriginInitializationAttempt::Datastore) | dom/localstorage/ActorsParent.cpp#551:NS_ERROR_FILE_ACCESS_DENIED <- dom/localstorage/ActorsParent.cpp#7073:NS_ERROR_FILE_ACCESS_DENIED |
Comment 58•16 days ago
|
||
Taken from Attachment 9323514 [details].
Clients | Sessions | Hits | Anchor (Context) | Stack |
---|---|---|---|---|
2 | 2 | 9 | dom/localstorage/ActorsParent.cpp:CreateStorageConnection (dom::localstorage::FirstOriginInitializationAttempt::Datastore) | dom/localstorage/ActorsParent.cpp#549:NS_ERROR_FILE_ACCESS_DENIED <- dom/localstorage/ActorsParent.cpp#7033:NS_ERROR_FILE_ACCESS_DENIED |
1 | 1 | 1 | dom/localstorage/ActorsParent.cpp:CreateStorageConnection (dom::localstorage::FirstOriginInitializationAttempt::Datastore) | dom/localstorage/ActorsParent.cpp#551:NS_ERROR_FILE_ACCESS_DENIED <- dom/localstorage/ActorsParent.cpp#7073:NS_ERROR_FILE_ACCESS_DENIED |
Description
•