TW

Results 2664 comments of TW

@jpoggi If you want `borg mount` working (on the borg client side), you either need `llfuse` (fuse2) or `pyfuse3` (fuse3).

@solracsf the first link points to an unrelated issue. although it contains the same warning, the issue is about that `AttributeError`, not about the warning. But as you say the...

@luispabon for borg you either need `llfuse` or `pyfuse3` (and `pyfuse3` needs `trio`) - at least if you want to use `borg mount`, which requires them. If you do not...

BTW, I recently restricted the cython version in borgbackup's pyproject.toml (and requirements.txt) and that just led to confusion / questions when some linux dist does not have that version. E.g....

@kloczek sorry for the merge conflict caused here by merging my PR. I had to "fix" the imports in `setup.py` due to `ruff` complaining about multiple imports on one line...

@mattp- Sounds interesting (I use msgpack for borgbackup) - do you have an easy way to reproduce the issue? Ideal would be an automated way, like some executable returning 0...

Did you observe the regression using the same python version or was there a python upgrade at the same time as the msgpack ugprade?

@mattp- Also you could determine whether you use the fast (cython/c) msgpack implementation or the slow (pure python) one. Usually it should be the fast one, but there can be...

Tried to reproduce here (with msgpack 1.0.7, fast and slow unpackb), but did not see anything suspicious yet (didn't run it for very long times though): ``` import sys import...

@mattp- ok, i updated the code above.