Open mikepkes opened 1 year ago
Additional output shows the db remains locked after waiting:
[51188:32692:0623/112309.337:ERROR:database.cc(1696)] Cookie sqlite error 5, errno 33: database is locked, sql: UPDATE cookies SET last_access_utc=? WHERE name=? AND host_key=? AND path=?
[51188:32692:0623/112309.337:ERROR:database.cc(1696)] Cookie sqlite error 5, errno 33: database is locked, sql: UPDATE cookies SET last_access_utc=? WHERE name=? AND host_key=? AND path=?
[51188:32692:0623/112309.337:ERROR:database.cc(1696)] Cookie sqlite error 5, errno 33: database is locked, sql: DELETE FROM cookies WHERE name=? AND host_key=? AND path=?
[51188:32692:0623/112309.337:ERROR:database.cc(1696)] Cookie sqlite error 5, errno 33: database is locked, sql: INSERT INTO cookies (creation_utc, host_key, name, value, encrypted_value, path,
expires_utc, is_secure, is_httponly, samesite, last_access_utc, has_expires, is_persistent, priority,source_scheme) VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
[51188:32692:0623/112309.338:ERROR:database.cc(1696)] Cookie sqlite error 5, errno 33: database is locked, sql: UPDATE cookies SET last_access_utc=? WHERE name=? AND host_key=? AND path=?
[51188:32692:0623/112309.338:ERROR:database.cc(1696)] Cookie sqlite error 5, errno 33: database is locked, sql: DELETE FROM cookies WHERE name=? AND host_key=? AND path=?
[51188:32692:0623/112309.338:ERROR:database.cc(1696)] Cookie sqlite error 5, errno 33: database is locked, sql: INSERT INTO cookies (creation_utc, host_key, name, value, encrypted_value, path,
expires_utc, is_secure, is_httponly, samesite, last_access_utc, has_expires, is_persistent, priority,source_scheme) VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
[51188:32692:0623/112309.338:ERROR:database.cc(1696)] Cookie sqlite error 5, errno 33: database is locked, sql: UPDATE cookies SET last_access_utc=? WHERE name=? AND host_key=? AND path=?
[51188:32692:0623/112309.338:ERROR:database.cc(1696)] Cookie sqlite error 5, errno 33: database is locked, sql: UPDATE cookies SET last_access_utc=? WHERE name=? AND host_key=? AND path=?
[51188:32692:0623/112309.338:ERROR:database.cc(1696)] Cookie sqlite error 5, errno 33: database is locked, sql: DELETE FROM cookies WHERE name=? AND host_key=? AND path=?
[51188:32692:0623/112309.338:ERROR:database.cc(1696)] Cookie sqlite error 5, errno 33: database is locked, sql: INSERT INTO cookies (creation_utc, host_key, name, value, encrypted_value, path,
expires_utc, is_secure, is_httponly, samesite, last_access_utc, has_expires, is_persistent, priority,source_scheme) VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
[51188:32692:0623/112309.339:ERROR:database.cc(1696)] Cookie sqlite error 5, errno 33: cannot commit transaction - SQL statements in progress, sql: COMMIT
[51188:32692:0623/112425.252:ERROR:database.cc(1696)] Cookie sqlite error 1, errno 33: cannot start a transaction within a transaction, sql: BEGIN TRANSACTION
[51188:32144:0623/112529.769:ERROR:database.cc(1696)] Cookie sqlite error 1, errno 33: cannot start a transaction within a transaction, sql: BEGIN TRANSACTION
[51188:21476:0623/112738.176:ERROR:database.cc(1696)] Cookie sqlite error 1, errno 33: cannot start a transaction within a transaction, sql: BEGIN TRANSACTION
I believe this is a limitation from Qt WebEngine... It's possible to work around it by making the WebEngine Profile non-persistent, but then you lose your cookies when RV exits.
I think you are right; likely situations that mitigate this adopt a singleton app (which RV obviously has in rvpush, but this is specifically for times when you want two instances)
Yeah, one improvement would be to get a copy of the existing one and use that as a starting point; and log (as a WARNING) that the browser state will not persist.
What happened?
When RV launches on Windows, it causes a lock on the web cache/cookie db that prevents accesses from other instances of RV. This causes any web interface (such as Screening room, etc) to no longer have access to cookies, and cannot write cookies.
List all the operating systems versions where this is happening
Windows 10
On what computer hardware is this happening?
ThreadRippper with RTX 2080ti
Relevant console log output
Environment variables
No response
Extra information
No response
Code of Conduct