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
I use a cron job, per user, with a script that does just a
withings-sync
after changing to the right directory with a .env file correctly set
Problem : urllib3 use a connection pool and it is persistent. So when logging for the second user, the connection is already established and the datas are sent to the first user.
Only solution I've found is to use a second server ... not nice :(
Seems to be related to the way urllib3 works, and the way the connection is kept to not have MFA
The text was updated successfully, but these errors were encountered:
use case :
I use a cron job, per user, with a script that does just a
withings-sync
after changing to the right directory with a .env file correctly set
Problem : urllib3 use a connection pool and it is persistent. So when logging for the second user, the connection is already established and the datas are sent to the first user.
Only solution I've found is to use a second server ... not nice :(
Seems to be related to the way urllib3 works, and the way the connection is kept to not have MFA
The text was updated successfully, but these errors were encountered: