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

Remove super calls in KafkaBootStep

parent 6db0325a
No related branches found
No related tags found
No related merge requests found
......@@ -20,15 +20,12 @@ class KafkaBootStep(bootsteps.ConsumerStep):
"""
def __init__(self, parent, kafka=False, **kwargs):
super().__init__(parent, **kwargs)
self.enabled = bool(kafka)
def start(self, parent):
super().start(parent)
log.info(f'Starting {self.name}, topic: {self.topic_url}')
def stop(self, parent):
super().stop(parent)
log.info(f'Closing connection to topic: {self.topic_url}')
......
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