Closed itsfarbod closed 2 months ago
Hi, The _parse_sentinel was a class function and when it get called by
_parse_sentinel
sentinel_hosts = [ _parse_sentinel(fallback) for fallback in kwargs.pop('sentinel_fallback', []) ]
It made errors because it doesn't pass cls to it and it can't receive the sentinel. So I made it static and tested it and its OK now.
@mergifyio backport stable/4.6
backport stable/4.6
Hi, The
_parse_sentinel
was a class function and when it get called byIt made errors because it doesn't pass cls to it and it can't receive the sentinel. So I made it static and tested it and its OK now.