Skip to content
Snippets Groups Projects
Commit 6f8b8bb0 authored by Geoffrey Mo's avatar Geoffrey Mo Committed by Cody Messick
Browse files

Add call to super()'s init in KafkaBootStep

parent 14ae7027
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