Skip to content

Commit

Permalink
dora-echo replicate the topic received with the topic send (#663)
Browse files Browse the repository at this point in the history
Small fix to replicate the topic received with the topic sent.
  • Loading branch information
haixuanTao authored Sep 26, 2024
2 parents 825313a + da25eeb commit 453b3d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion node-hub/dora-echo/dora_echo/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def main():

for event in node:
if event["type"] == "INPUT":
node.send_output("echo", event["value"])
node.send_output(event["id"], event["value"], event["metadata"])


if __name__ == "__main__":
Expand Down

0 comments on commit 453b3d1

Please sign in to comment.