summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Reifschneider <jafo@tummy.com>2011-11-27 18:00:31 -0700
committerSean Reifschneider <jafo@tummy.com>2011-11-27 18:00:31 -0700
commit882c5ab5da13d38e3be94edb43a6b23bbd3a934f (patch)
treea03f5c2b621b83e97ad9321c9d35ca07f01023be
parente9e5abd0ffec136450a08f31e3e1b44a793de40c (diff)
downloadpython-memcached-882c5ab5da13d38e3be94edb43a6b23bbd3a934f.tar.gz
Changelog for last commit.
-rw-r--r--ChangeLog7
1 files changed, 7 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index a227814..50912ff 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+ * Bug #713488: Issues Invalid "delete" command.
+ Protocol has changed so that the "delete" operation no longer takes a
+ "time" argument. It seems that some servers will refuse a "delete key
+ 0" while others will accept it, but the official server will NOT accept
+ "delete key 1". So I've changed it so that if no "time" argument is
+ specified, no time argument is sent to the server.
+
* Bug #713451: server.expect("END") needs to be in a finally block
Expect an "END" when the _recv_value() raises an exception.
Patch by Jay Farrimond.