Skip to content
Snippets Groups Projects
Commit 41590535 authored by Geoffrey Mo's avatar Geoffrey Mo
Browse files

Add call to super()'s init in KafkaBootStep

parent 0c79054e
No related branches found
No related tags found
No related merge requests found
......@@ -20,6 +20,7 @@ class KafkaBootStep(bootsteps.ConsumerStep):
"""
def __init__(self, parent, kafka=False, **kwargs):
super().__init__(parent, **kwargs)
self.enabled = bool(kafka)
def start(self, parent):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment