Skip to content
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.

Commit

Permalink
Fix input/output reference naming bug
Browse files Browse the repository at this point in the history
  • Loading branch information
c-w committed Feb 6, 2019
1 parent 95dd525 commit c74f28e
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -8,8 +8,8 @@

if __name__ == '__main__':
config = dict(os.environ)
if 'KAFKA_TOPIC_INPUT' in config:
config['KAFKA_TOPIC'] = config.pop('KAFKA_TOPIC_INPUT')
if 'KAFKA_TOPIC_OUTPUT' in config:
config['KAFKA_TOPIC'] = config.pop('KAFKA_TOPIC_OUTPUT')

CFG = {
'client': {
Expand Down

0 comments on commit c74f28e

Please sign in to comment.