You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
please do:
return Redis(host=self.host, port=int(self.port),..... - ie. cast port to int() - if someone reads celeryconfig from ini - then port will be a string and redis cant connect.
but bigger problem is that is somehow hidden by a try/catch somewhere - got exposed when i used my app to execute a task, but did not appear at all when starting celeryd using paste
The text was updated successfully, but these errors were encountered:
in line 32 of pyredis.py please change:
please do:
return Redis(host=self.host, port=int(self.port),..... - ie. cast port to int() - if someone reads celeryconfig from ini - then port will be a string and redis cant connect.
but bigger problem is that is somehow hidden by a try/catch somewhere - got exposed when i used my app to execute a task, but did not appear at all when starting celeryd using paste
The text was updated successfully, but these errors were encountered: