From 759354f63d6a40f18ad8100631722288751faa75 Mon Sep 17 00:00:00 2001 From: mattmz Date: Tue, 9 Mar 2021 16:38:10 -0800 Subject: [PATCH] Update README.md Fix README instructions for 3_streaming_data/python, referencing chocolate_factory.idl, ChocolateFactorySubscriber.py and ChocolateFactoryPublisher.py. --- 3_streaming_data/python/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/3_streaming_data/python/README.md b/3_streaming_data/python/README.md index 94183a1..8f18fc4 100644 --- a/3_streaming_data/python/README.md +++ b/3_streaming_data/python/README.md @@ -14,7 +14,7 @@ be found [here](https://github.com/rticommunity/connextdds-py). To generate the XML definition from IDL, run ```shell -$ rtiddsgen -convertToXml ../temperature.idl +$ rtiddsgen -convertToXml ../chocolate_factory.idl ``` The example requires a valid license file, which can be configured with @@ -25,9 +25,9 @@ the `RTI_LICENSE_FILE` environment variable. Follow the instructions under To run the examples, open two terminals. In one, run ```shell -$ python3 TemperatureSubscriber.py +$ python3 ChocolateFactorySubscriber.py ``` In the other, run ```shell -$ python3 TemperaturePublisher.py +$ python3 ChocolateFactoryPublisher.py ```