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
It is related to the number of threads used. See this code in offlineimap/threadutil.py, line 183:
definitInstanceLimit(limitNamespace, instancemax):
"""Initialize the instance-limited thread implementation. Run up to intancemax threads for the given limitNamespace. This allows to honor maxsyncaccounts and maxconnections."""globallimitedNamespacesiflimitNamespacenotinlimitedNamespaces:
limitedNamespaces[limitNamespace] =BoundedSemaphore(instancemax)
What is the reasoning for having maxsyncaccounts and why is it encouraged to not use this? for security reasons?
The text was updated successfully, but these errors were encountered: