This commit is contained in:
Joey Hess 2019-09-26 12:40:08 -04:00
parent 8fa4e4ef81
commit db1fb97699
No known key found for this signature in database
GPG key ID: DB12DB0FF05F8F38

View file

@ -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
"""]]