Skip to content

Commit

Permalink
Fix type error for topic.
Browse files Browse the repository at this point in the history
  • Loading branch information
dspeck1 committed Sep 20, 2024
1 parent 350bebe commit 0e28260
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/activator/activator.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ def keda_start():
"group.id": next_visit_kakfa_group_id,
"auto.offset.reset": "earliest",
})
next_visit_fan_out_consumer.subscribe(next_visit_fan_out_topic)
next_visit_fan_out_consumer.subscribe([next_visit_fan_out_topic])
next_visit_fan_out_message = next_visit_fan_out_consumer.consume(num_messages=1, timeout=5)
_log.info(next_visit_fan_out_message)

Expand Down

0 comments on commit 0e28260

Please sign in to comment.