You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Handling empty command in ShmProtocolHandler.handle :
if (expectedMode == FrameMode.COMMAND && !buffer.toString(PROTOCOL_ENCODING).isEmpty()) {
}
but not sure allowing empty command is a good idea
The text was updated successfully, but these errors were encountered:
Hi,
When testing SET command with telnet, i get an malformed_request
In unit test, we don't have the malformed_request, because "\r\n" is not send
Maybe there is a way to send the command without carriage return in telnet ?
Otherwhise, this issue can be fixed in two ways
but this will make a breaking change
if (expectedMode == FrameMode.COMMAND && !buffer.toString(PROTOCOL_ENCODING).isEmpty()) {
}
but not sure allowing empty command is a good idea
The text was updated successfully, but these errors were encountered: