diff --git a/examples/cfdp-cli-udp/local.py b/examples/cfdp-cli-udp/local.py index c4cdbf2..6692f72 100755 --- a/examples/cfdp-cli-udp/local.py +++ b/examples/cfdp-cli-udp/local.py @@ -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() diff --git a/examples/cfdp-cli-udp/remote.py b/examples/cfdp-cli-udp/remote.py index 8647337..d0d43f8 100755 --- a/examples/cfdp-cli-udp/remote.py +++ b/examples/cfdp-cli-udp/remote.py @@ -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() diff --git a/examples/cfdp-cli-udp/requirements.txt b/examples/cfdp-cli-udp/requirements.txt index df1369b..054d347 100644 --- a/examples/cfdp-cli-udp/requirements.txt +++ b/examples/cfdp-cli-udp/requirements.txt @@ -1 +1 @@ -tmtccmd==v8.0.0rc1 +tmtccmd==8.0.1