We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[16162:0528/165128.382539:ERROR:service_worker_storage.cc(2016)] Failed to delete the database: Database IO error
AFAIS new process starts too fast while DB is not closed
ps.removeAllListeners() ps.kill() ps = startElectron(inlineConfig.root)
As the solution we can delay the start, e.g
setTimeout(() => { ps = startElectron(inlineConfig.root) }, 1000)
At least it fixed the problem for me
2.2
30
4.6
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
AFAIS new process starts too fast while DB is not closed
As the solution we can delay the start, e.g
At least it fixed the problem for me
Electron-Vite Version
2.2
Electron Version
30
Vite Version
4.6
Validations
The text was updated successfully, but these errors were encountered: