yadayada

Results 61 comments of yadayada

> Does this mean there's a single user calling getChanges 2,900 times an hour? or all users combined? I'm not sure anymore, but judging from the number of roughly 17,500...

> is there anything we can do now to improve logging for this? Are these excerpts from the log file? If so, could you please mount in debug+foreground mode; you...

@Niklasmaximilian See #283. Please contact Amazon's support.

@hjone72 Which OS are you using? Please also give me a log obtained by using `acdcli -d mount -fg /mount/point`. _Addendum_: I did not suggest the original issue was related...

I presume the autocommit feature is not working. Could someone please test the small patch below and report back? ```diff diff --git a/acdcli/cache/db.py b/acdcli/cache/db.py index 35eab35..0ea048f 100644 --- a/acdcli/cache/db.py +++...

Another shot in the dark: ```diff diff --git a/acdcli/cache/db.py b/acdcli/cache/db.py index 35eab35..5bab3d2 100644 --- a/acdcli/cache/db.py +++ b/acdcli/cache/db.py @@ -84,6 +84,7 @@ class NodeCache(SchemaMixin, QueryMixin, SyncMixin, FormatterMixin): return self.tl._conn def _execute_pragma(self,...

Yes, you may just disable WAL mode. ```diff diff --git a/acdcli/cache/db.py b/acdcli/cache/db.py index 35eab35..194b0f7 100644 --- a/acdcli/cache/db.py +++ b/acdcli/cache/db.py @@ -75,7 +75,6 @@ class NodeCache(SchemaMixin, QueryMixin, SyncMixin, FormatterMixin): self.root_id =...

Let's have a look at the [sqlite3 module documentation for Python 3.6](https://docs.python.org/3.6/library/sqlite3.html#controlling-transactions)... >So if you are within a transaction and issue a command like CREATE TABLE ..., VACUUM, PRAGMA, the...

```diff diff --git a/acdcli/cache/db.py b/acdcli/cache/db.py index 35eab35..aac79ed 100644 --- a/acdcli/cache/db.py +++ b/acdcli/cache/db.py @@ -35,7 +35,7 @@ class IntegrityError(Exception): def _create_conn(path: str) -> sqlite3.Connection: - c = sqlite3.connect(path) + c =...

@ahom Strange, I tested on Debian testing with a freshly compiled Python 3.6.0 and it made the intermittent wal mode change errors reliably disappear.