redis / redis-py

Redis Python client
MIT License
12.4k stars 2.48k forks source link

Fixes CAE-333 #3290

Closed dmaier-redislabs closed 1 week ago

dmaier-redislabs commented 1 week ago

The bug uncovered that the init method of the base class did override the initialization of the socket_timeout parameter.

This was fixed by moving super().__init__(**kwargs) before setting the timeout and path properties.

In addition, a test case was added.