aboutsummaryrefslogtreecommitdiff
path: root/ext/wasm/api/sqlite3-api-prologue.js
diff options
context:
space:
mode:
authorstephan <stephan@noemail.net>2022-10-09 13:26:15 +0000
committerstephan <stephan@noemail.net>2022-10-09 13:26:15 +0000
commit4fbf90ee11aea78557c40c4614a2d5ea95f3bea8 (patch)
tree2c043de585a2094ca9c9e05458f901926b6e72ac /ext/wasm/api/sqlite3-api-prologue.js
parentd35b5587df9b6e68ac5a1a1907a95ce6e3abee51 (diff)
downloadsqlite-4fbf90ee11aea78557c40c4614a2d5ea95f3bea8.tar.gz
sqlite-4fbf90ee11aea78557c40c4614a2d5ea95f3bea8.zip
Refactor kvvfs JS bits to make use of [ea370b9b05f7ed7eaa]. At main-thread startup, if kvvfs is available, replace the kvvfs I/O methods with JS impls. Checkin part 2 of 2, to account for cherrypicking [ea370b9b05f7ed7eaa] into the kv-vfs branch.
FossilOrigin-Name: a9047e020a097b2259bc9935b63ca1c538a3a7f1d050e15f0d0a08cfb84acc7c
Diffstat (limited to 'ext/wasm/api/sqlite3-api-prologue.js')
-rw-r--r--ext/wasm/api/sqlite3-api-prologue.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/wasm/api/sqlite3-api-prologue.js b/ext/wasm/api/sqlite3-api-prologue.js
index 5b80c439b..8e2dda1d7 100644
--- a/ext/wasm/api/sqlite3-api-prologue.js
+++ b/ext/wasm/api/sqlite3-api-prologue.js
@@ -1313,7 +1313,7 @@ self.sqlite3ApiBootstrap = function sqlite3ApiBootstrap(
// to resolve in order? We currently only have 1, so it
// makes no difference.
lip = lip.map((f)=>f(sqlite3).catch((e)=>{
- console.error("An async sqlite3 initializer failed:",e);
+ console.error("Ignoring error: an async sqlite3 initializer failed:",e);
}));
//let p = lip.shift();
//while(lip.length) p = p.then(lip.shift());