summaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorJon Dufresne <jon.dufresne@gmail.com>2018-09-22 21:29:01 -0700
committerJon Dufresne <jon.dufresne@gmail.com>2018-11-01 18:06:20 -0700
commitd8b1fa623e6aac09b5b10d793de9d13562d5570d (patch)
tree2464cfe7bc99219ea07f64ec9bb1b1c77b3b134b /CHANGES
parente4b3ddd630944fd20ed54e06355165fff2dda0a0 (diff)
downloadredis-py-d8b1fa623e6aac09b5b10d793de9d13562d5570d.tar.gz
Prefer https:// for URLs when available
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES6
1 files changed, 3 insertions, 3 deletions
diff --git a/CHANGES b/CHANGES
index d048ea5..fb10389 100644
--- a/CHANGES
+++ b/CHANGES
@@ -190,7 +190,7 @@
for the report.
* Connections now call socket.shutdown() prior to socket.close() to
ensure communication ends immediately per the note at
- http://docs.python.org/2/library/socket.html#socket.socket.close
+ https://docs.python.org/2/library/socket.html#socket.socket.close
Thanks to David Martin for pointing this out.
* Lock checks are now based on floats rather than ints. Thanks
Vitja Makarov.
@@ -224,11 +224,11 @@
* Prevent DISCARD from being called if MULTI wasn't also called. Thanks
Pete Aykroyd.
* SREM now returns an integer indicating the number of items removed from
- the set. Thanks http://github.com/ronniekk.
+ the set. Thanks https://github.com/ronniekk.
* Fixed a bug with BGSAVE and BGREWRITEAOF response callbacks with Python3.
Thanks Nathan Wan.
* Added CLIENT GETNAME and CLIENT SETNAME commands.
- Thanks http://github.com/bitterb.
+ Thanks https://github.com/bitterb.
* It's now possible to use len() on a pipeline instance to determine the
number of commands that will be executed. Thanks Jon Parise.
* Fixed a bug in INFO's parse routine with floating point numbers. Thanks