[MDEV-11244] main.ssl_timeout failed in buildbot Created: 2016-11-07 Updated: 2023-11-29 Resolved: 2023-11-29 |
|
| Status: | Closed |
| Project: | MariaDB Server |
| Component/s: | Tests |
| Affects Version/s: | 10.2 |
| Fix Version/s: | N/A |
| Type: | Bug | Priority: | Major |
| Reporter: | Elena Stepanova | Assignee: | Georg Richter |
| Resolution: | Won't Fix | Votes: | 0 |
| Labels: | 10.2-ga | ||
| Issue Links: |
|
||||||||
| Description |
|
|
| Comments |
| Comment by Vladislav Vaintroub [ 2016-11-08 ] |
|
this one is sporadic, but at the very least I'd like to have errors from the lowest level (ssl) to be properly propagated to the upper level. "Lost connection during query" has no details. There should be SSL error , or socket error there. If the socket was closed on the server side mysqld did not crash here btw. |
| Comment by Georg Richter [ 2017-01-25 ] |
|
We have at least two options to fix this: 1) Using pvio->read/write instead of SSL_read/SSL_write by registering these function via BIO_method (that would allow also to communicate via non socket connections). 2) Using non-blocking and checking error codes and timeout. |