From 7563a13621ad61a33bfe7e158e47b1565ee8c180 Mon Sep 17 00:00:00 2001 From: Fatih Arslan Date: Wed, 21 Aug 2013 14:21:17 +0300 Subject: [PATCH] Fix error code in README.md There is no error code with number 404. It returns 100 when no key exist. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 525b52d3a..e7392495c 100644 --- a/README.md +++ b/README.md @@ -141,7 +141,7 @@ Now you can try to get the key by sending: curl -L http://127.0.0.1:4001/v1/keys/foo ``` -If the TTL has expired, the key will be deleted, and you will be returned a 404. +If the TTL has expired, the key will be deleted, and you will be returned a 100. ```json {"errorCode":100,"message":"Key Not Found","cause":"/foo"}