comment
This commit is contained in:
parent
8fa4e4ef81
commit
db1fb97699
1 changed files with 20 additions and 0 deletions
|
@ -0,0 +1,20 @@
|
|||
[[!comment format=mdwn
|
||||
username="joey"
|
||||
subject="""comment 4"""
|
||||
date="2019-09-26T16:30:25Z"
|
||||
content="""
|
||||
It looks more like a locking problem than a permission problem.
|
||||
|
||||
Anyway, you've certainly shown that sqlite is not able to work well on that
|
||||
filesystem.
|
||||
|
||||
I forgot was that git-annex uses WAL mode for the database,
|
||||
and that will change how sqlite does locking. Can you please try this
|
||||
on a new database file:
|
||||
|
||||
sqlite3 /media/mydisk/tmp/db.new
|
||||
PRAGMA journal_mode=WAL;
|
||||
create table foo (name varchar);
|
||||
insert into foo (name) values ("joey")
|
||||
.exit
|
||||
"""]]
|
Loading…
Add table
Reference in a new issue