diff options
author | stephan <stephan@noemail.net> | 2024-07-13 00:55:55 +0000 |
---|---|---|
committer | stephan <stephan@noemail.net> | 2024-07-13 00:55:55 +0000 |
commit | f7623a0871c51b8680057e0682b08dc52bfa27f2 (patch) | |
tree | 8f8c9110de897ac57ba645ab508dca9439b888ca /ext/wasm/tester1.c-pp.js | |
parent | 8ee747dda55887775417e13882ffed29868a0865 (diff) | |
download | sqlite-f7623a0871c51b8680057e0682b08dc52bfa27f2.tar.gz sqlite-f7623a0871c51b8680057e0682b08dc52bfa27f2.zip |
Rename the new opfs-sahpool init-retry flag to the suitably descriptive, and suitably onerous, forceReinitIfPreviouslyFailed, based on feedback.
FossilOrigin-Name: c9f0a6090258534a3d81066df5610229183a8457fc60d5034b4b94d9a29796e4
Diffstat (limited to 'ext/wasm/tester1.c-pp.js')
-rw-r--r-- | ext/wasm/tester1.c-pp.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ext/wasm/tester1.c-pp.js b/ext/wasm/tester1.c-pp.js index 5d24daf15..1fcc9ae7c 100644 --- a/ext/wasm/tester1.c-pp.js +++ b/ext/wasm/tester1.c-pp.js @@ -3190,9 +3190,10 @@ globalThis.sqlite3InitModule = sqlite3InitModule; T.assert(cErr === await inst(conf2).catch(e=>e), "Init result is cached even if it failed"); - /* Ensure that the forceReinitIfFailed fallback bypasses the VFS init cache... */ + /* Ensure that the forceReinitIfPreviouslyFailed fallback bypasses + the VFS init cache... */ cErr = u3 = undefined; - conf2.forceReinitIfFailed = true; + conf2.forceReinitIfPreviouslyFailed = true; conf2.verbosity = 3; const P3b = await inst(conf2).then(u=>u3 = u).catch((e)=>cErr=e); T.assert(undefined === cErr) |