Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
22.08.4
-
None
Description
The following test reproduces the problem:
#!/usr/bin/env python3
|
|
import socket |
import time |
|
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) |
s.connect(("127.0.0.1", 4006)) |
|
for i in range(0, 2000): |
s.send(bytes([0xff, 0xff, 0xff, 0])) |
|
time.sleep(1000) |
This can potentially happen when something does a health check on the MaxScale port that doesn't use the MariaDB protocol to do it.
Attachments
Issue Links
- causes
-
MXS-4402 MaxScale 22.08 received fatal signal 6
- Closed