You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hmm, it looks like this error is caused by a race condition in which one thread deletes a resource, and another thread has filter subscribed to a list with that resource right before it's deleted, then after deletion attempts to subscribe (as it needs to search by name in some cases). I think the best fix here is to have the delete function support taking multiple torrent IDs.
I'm trying to use
sycli del -f
withxargs -0
, this kind-of randomly fails with this error at some point.Using
xargs -0L1
seems to work much better, so only a single torrent is deleted at a time.The text was updated successfully, but these errors were encountered: