fix schema in redis for nonexistent_response being required

This commit is contained in:
bwireman 2019-09-06 11:00:30 -04:00
parent 99e5b4c7e3
commit 27e6033b03

View File

@ -20,7 +20,7 @@ redis_scan_response = SubRecord({
"(Error: NOAUTH Authentication required.)", "(Error: NOAUTH Authentication required.)",
]), ]),
"auth_response": String(doc="The response from the AUTH command, if sent."), "auth_response": String(doc="The response from the AUTH command, if sent."),
"nonexistent_response": String("The response from the NONEXISTENT command.", examples=[ "nonexistent_response": String(doc="The response from the NONEXISTENT command.", examples=[
"(Error: ERR unknown command 'NONEXISTENT')", "(Error: ERR unknown command 'NONEXISTENT')",
]), ]),
"quit_response": String(doc="The response to the QUIT command.", examples=["OK"]), "quit_response": String(doc="The response to the QUIT command.", examples=["OK"]),