-
Notifications
You must be signed in to change notification settings - Fork 11
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
SSL session is invalid #27
Comments
Most likely this was still during connection issues. And seems like it does only retry to connect 3 times or so? That could explain it. |
Had this issue again today, and decided to troubleshoot it further. Connection failed:
It reconnects again:
But then RefreshCapabilities fails:
And this seems to cause the HostConnectionRefresher to stop Refreshing the VDS, and causing the host to stay in Connecting state forever. The HostMonitoringWatch dog confirms:
Maybe @pkliczewski has some idea? |
When the handshake check that is added in PR oVirt#17 fails, then a ClientConnectionException is thrown, and passed up to the client in ovirt-engine. But as the connection is in some invalid state, but not disconnected, it for example causes there are no heartbeats anymore. This fix also closes the connection when there is some ClientConnectionException in the postConnect stage. This should fix oVirt#27 Signed-off-by: Jean-Louis Dupond <jean-louis@dupond.be>
When the handshake check that is added in PR oVirt#17 fails, then a ClientConnectionException is thrown, and passed up to the client in ovirt-engine. But as the connection is in some invalid state, but not disconnected, it for example causes there are no heartbeats anymore. This fix also closes the connection when there is some ClientConnectionException in the postConnect stage. This should fix oVirt#27 Signed-off-by: Jean-Louis Dupond <jean-louis@dupond.be>
When the handshake check that is added in PR #17 fails, then a ClientConnectionException is thrown, and passed up to the client in ovirt-engine. But as the connection is in some invalid state, but not disconnected, it for example causes there are no heartbeats anymore. This fix also closes the connection when there is some ClientConnectionException in the postConnect stage. This should fix #27 Signed-off-by: Jean-Louis Dupond <jean-louis@dupond.be>
We had some connection issue between the ovirt-engine and the hosts.
Now we noticed the hosts didn't got reconnected after resolving the issue.
Checking the logs show the following:
It might be related to #17 ?
After restarting the ovirt-engine it started working again. But would be cleaner if it would reconnect by itself :)
Thanks
The text was updated successfully, but these errors were encountered: