Hello community,

here is the log from the commit of package python-redis for openSUSE:Factory 
checked in at 2019-03-28 22:48:18
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-redis (Old)
 and      /work/SRC/openSUSE:Factory/.python-redis.new.25356 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-redis"

Thu Mar 28 22:48:18 2019 rev:20 rq:688630 version:3.2.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-redis/python-redis.changes        
2019-02-19 12:01:49.789093688 +0100
+++ /work/SRC/openSUSE:Factory/.python-redis.new.25356/python-redis.changes     
2019-03-28 22:48:24.747057721 +0100
@@ -1,0 +2,7 @@
+Tue Mar 26 09:36:48 UTC 2019 - John Vandenberg <jay...@gmail.com>
+
+- Update to v3.2.1
+  * Fix SentinelConnectionPool to work in multiprocess/forked
+    environments
+
+-------------------------------------------------------------------

Old:
----
  redis-3.2.0.tar.gz

New:
----
  redis-3.2.1.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-redis.spec ++++++
--- /var/tmp/diff_new_pack.FrUjPH/_old  2019-03-28 22:48:25.827057526 +0100
+++ /var/tmp/diff_new_pack.FrUjPH/_new  2019-03-28 22:48:25.831057525 +0100
@@ -12,13 +12,13 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:           python-redis
-Version:        3.2.0
+Version:        3.2.1
 Release:        0
 Summary:        Python client for Redis key-value store
 License:        MIT

++++++ redis-3.2.0.tar.gz -> redis-3.2.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/redis-3.2.0/CHANGES new/redis-3.2.1/CHANGES
--- old/redis-3.2.0/CHANGES     2019-02-17 22:56:48.000000000 +0100
+++ new/redis-3.2.1/CHANGES     2019-03-15 18:47:12.000000000 +0100
@@ -1,3 +1,5 @@
+* 3.2.1
+    * Fix SentinelConnectionPool to work in multiprocess/forked environments.
 * 3.2.0
     * Added support for `select.poll` to test whether data can be read
       on a socket. This should allow for significantly more connections to
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/redis-3.2.0/PKG-INFO new/redis-3.2.1/PKG-INFO
--- old/redis-3.2.0/PKG-INFO    2019-02-17 23:00:25.000000000 +0100
+++ new/redis-3.2.1/PKG-INFO    2019-03-15 18:48:07.000000000 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: redis
-Version: 3.2.0
+Version: 3.2.1
 Summary: Python client for Redis key-value store
 Home-page: https://github.com/andymccurdy/redis-py
 Author: Andy McCurdy
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/redis-3.2.0/redis/__init__.py 
new/redis-3.2.1/redis/__init__.py
--- old/redis-3.2.0/redis/__init__.py   2019-02-17 22:57:54.000000000 +0100
+++ new/redis-3.2.1/redis/__init__.py   2019-03-15 18:47:21.000000000 +0100
@@ -29,7 +29,7 @@
         return value
 
 
-__version__ = '3.2.0'
+__version__ = '3.2.1'
 VERSION = tuple(map(int_or_str, __version__.split('.')))
 
 __all__ = [
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/redis-3.2.0/redis/sentinel.py 
new/redis-3.2.1/redis/sentinel.py
--- old/redis-3.2.0/redis/sentinel.py   2018-11-15 04:41:42.000000000 +0100
+++ new/redis-3.2.1/redis/sentinel.py   2019-03-15 18:45:49.000000000 +0100
@@ -1,4 +1,3 @@
-import os
 import random
 import weakref
 
@@ -125,17 +124,6 @@
             pass
         raise SlaveNotFoundError('No slave found for %r' % (self.service_name))
 
-    def _checkpid(self):
-        if self.pid != os.getpid():
-            self.disconnect()
-            self.reset()
-            self.__init__(self.service_name, self.sentinel_manager,
-                          is_master=self.is_master,
-                          check_connection=self.check_connection,
-                          connection_class=self.connection_class,
-                          max_connections=self.max_connections,
-                          **self.connection_kwargs)
-
 
 class Sentinel(object):
     """
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/redis-3.2.0/redis.egg-info/PKG-INFO 
new/redis-3.2.1/redis.egg-info/PKG-INFO
--- old/redis-3.2.0/redis.egg-info/PKG-INFO     2019-02-17 23:00:25.000000000 
+0100
+++ new/redis-3.2.1/redis.egg-info/PKG-INFO     2019-03-15 18:48:07.000000000 
+0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: redis
-Version: 3.2.0
+Version: 3.2.1
 Summary: Python client for Redis key-value store
 Home-page: https://github.com/andymccurdy/redis-py
 Author: Andy McCurdy


Reply via email to