ghettoq icon indicating copy to clipboard operation
ghettoq copied to clipboard

Redis backend doesn't override `close` method

Open wolever opened this issue 14 years ago • 1 comments

So there's no way that the connection will be closed. I believe it should be:

def close(self):
    if self.connection is not None:
        self.connection.disconnect()

wolever avatar Nov 15 '10 00:11 wolever

Thanks! This is already working in Kombu it seems. Tried to fix this in 22a0fcd865b618cbbbfd102efd88a7983507c24e Could you verify if this solves the issue?

ask avatar Nov 24 '10 12:11 ask