Skip to content

Commit

Permalink
convert to test message
Browse files Browse the repository at this point in the history
  • Loading branch information
dspeck1 committed Oct 1, 2024
1 parent 0731a95 commit f46d0c4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,8 @@ async def fan_out_msg(
data
):
logging.info(f"sending msg {data}")
await producer.send_and_wait(fan_out_topic, b(json.dumps(data)))
#await producer.send_and_wait(fan_out_topic, b(json.dumps(data)))
await producer.send_and_wait(fan_out_topic, b"test")


async def main() -> None:
Expand Down

0 comments on commit f46d0c4

Please sign in to comment.