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
Currently CircliCI fails in deploy job due to network connectivity problems during pip install. Dockerfile already has --timeout=3000 among the options for pip. Still, we get:
Connection broken: ConnectionResetError(104, 'Connection reset by peer')
Should we increase the timeout? Or is this just a bad day?
The text was updated successfully, but these errors were encountered:
Tough to do something sensible about something so unpredictable. Maybe something like make foo || (sleep 60;echo "Failed once, waiting 60 seconds, trying again"; make foo) to just repeat steps? Ugly as hell but if the network is just gone for more then a few seconds it might help.
Currently CircliCI fails in
deploy
job due to network connectivity problems duringpip install
. Dockerfile already has--timeout=3000
among the options for pip. Still, we get:Should we increase the timeout? Or is this just a bad day?
The text was updated successfully, but these errors were encountered: