-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[WinError 10061] No connection could be made because the target machine actively refused it #631
Comments
Problem CauseWinError 10061 means the host actively refused the TCP connection, by responding with a TCP RST packet. In turn, that means that the host IP stack is up and running, but, most likely, no service is listening on that ip/port combination where the client attempts to connect to.
-- https://learn.microsoft.com/en-us/windows/win32/winsock/windows-sockets-error-codes-2 |
Hi again, this report, together with #628, was coming from a scenario where a user is building a test case, which connects to an invalid destination on purpose, in order to validate how the Python driver behaves in this situation. The improvement coming from #571 resolved the problem well:
With kind regards, |
Problem Report
When connecting to CrateDB using SQLAlchemy, the client raises an exception like this.
The text was updated successfully, but these errors were encountered: