sort of a follow up to #587
:thumbsup: But, are self.opts and opts the same things here?
self.opts
opts
But, are self.opts and opts the same things here?
They are not, which is why the fix is needed. The BaseTaskHandler class sets self.opts to the keyword arguments of the call. Some subclasses reassign it later, but not this one. In this case, opts == self.opts['opts'] (that is, assuming opts was passed as a keyword argument and not as the third positional argument).
BaseTaskHandler
opts == self.opts['opts']
Thanks @mikem That makes sense.
Commit c9719ace fixes this pull-request
Pull-Request has been merged by mikem@redhat.com
sort of a follow up to #587