-
Bug
-
Resolution: Done
-
Major
-
4.1.0.Final, 4.2.0.CR2
-
None
-
Low
From Michal:
"memcached server consumes one more line of input than it has to when unknown command occurs.
input:
"bogus\r\ndelete a\r\n"
expected output:
ERROR
NOT_FOUND
actual output:
ERROR
input:
"bogus\r\ndelete a\r\ndelete a\r\n"
expected output:
ERROR
NOT_FOUND
NOT_FOUND
actual output:
ERROR
NOT_FOUND
input: "bogus \r\ndelete a\r\ndelete a\r" (space after bogus) behaves as expected
check MemcachedDecoder.scala, line 45
readLine consumes next line even when it was already done by readElement"