- From: stelar7 <notifications@github.com>
- Date: Tue, 31 Dec 2024 17:45:24 -0800
- To: w3c/IndexedDB <IndexedDB@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Wednesday, 1 January 2025 01:45:29 UTC
In [Upgrading a database](https://w3c.github.io/IndexedDB/#upgrade-transaction-steps) step 11 is supposed to wait for the transaction to finish. A [transaction is finished](https://w3c.github.io/IndexedDB/#transaction-finished) once it enters the `finished` state (after `commit` or `abort`) Calling `indexedDB.open("test", 1)` will cause us to end up in upgrade, and then step 10.5 _should_ set the state to finished (via autocommit), but then we instantly set it back to inactive in step 10.6 Should step 11 instead be waiting for the task created in step 10 to finish? Or am I missing something else here? -- Reply to this email directly or view it on GitHub: https://github.com/w3c/IndexedDB/issues/436 You are receiving this because you are subscribed to this thread. Message ID: <w3c/IndexedDB/issues/436@github.com>
Received on Wednesday, 1 January 2025 01:45:29 UTC