Skip to content

Commit

Permalink
Merge pull request #13 from us-irs/update-examples
Browse files Browse the repository at this point in the history
smaller tweaks for examples
  • Loading branch information
robamu authored Aug 27, 2024
2 parents 92a7702 + 601acc8 commit d5d0347
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions examples/cfdp-cli-udp/local.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ def main():
dest_entity_rx_queue=DEST_ENTITY_QUEUE,
)

# TODO: Graceful shutdown handling.
source_entity_task.start()
dest_entity_task.start()
udp_server.start()
Expand Down
2 changes: 2 additions & 0 deletions examples/cfdp-cli-udp/remote.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,11 @@ def main():
dest_entity_rx_queue=DEST_ENTITY_QUEUE,
)

# TODO: Graceful shutdown.
source_entity_task.start()
dest_entity_task.start()
udp_server.start()

source_entity_task.join()
dest_entity_task.join()
udp_server.join()
Expand Down
2 changes: 1 addition & 1 deletion examples/cfdp-cli-udp/requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
tmtccmd==v8.0.0rc1
tmtccmd==8.0.1

0 comments on commit d5d0347

Please sign in to comment.