While working with repos in Azure DevOps, sometimes it will display the following error when try to communicate with remote repo by push/pull commands.
OpenSSL SSL_connect: Connection was reset in connection to dev.azure.com:443
Usually you can get work around this error if you keep trying opening/closing Visual Studio etc.
With Git repos in Azure-DevOps, I found that it has something to do with IPv6. After I disable the IPv6 from network connections, it works.
You can disable IPv6 by the following way:
-
Open your Network Connections.
-
Right click on your current network and select
Properties. -
In the Network Properties dialog box, deselect
Internet Prorotcol Version 6 (TCP/IPv6).
Click
OK to close the dialog.
The same work around can fix the following error when trying to clone a git repo from Azure DevOps.
unable to access 'https://dev.azure.com/myorganization/myproject/_git/webproject/': Recv failure: Connection was reset



No comments:
Post a Comment