@@ -155,8 +155,9 @@ simulation_bridge:
155155rabbitmq :
156156 host : localhost # RabbitMQ server hostname or IP
157157 port : 5672 # RabbitMQ port (default is 5672)
158- virtual_host : / # RabbitMQ virtual host to use
159-
158+ vhost : / # RabbitMQ virtual host to use
159+ username : guest # Username
160+ password : guest # Password
160161 infrastructure :
161162 exchanges :
162163 # Define all the exchanges used by the bridge
@@ -214,20 +215,16 @@ mqtt:
214215 input_topic : bridge/input # Topic to subscribe to for input
215216 output_topic : bridge/output # Topic to publish results
216217 qos : 0 # Quality of Service level (0: at most once)
218+ username : guest # Username
219+ password : guest # Password
217220
218221# Configuration for REST protocol adapter
219222rest :
220223 host : 0.0.0.0 # Host IP to bind the REST server (0.0.0.0 = all interfaces)
221224 port : 5000 # Port to run the REST server
222- input_endpoint : /message # Endpoint for receiving messages
225+ endpoint : /message # Endpoint for receiving messages
223226 debug : false # Enable/disable Flask debug mode
224227
225- client :
226- host : localhost # REST client target host
227- port : 5001 # Port of the external REST receiver
228- base_url : http://localhost:5001 # Base URL for outgoing REST requests
229- output_endpoint : /result # Path for sending result messages
230-
231228# Logging configuration
232229logging :
233230 level : INFO # Logging level (DEBUG, INFO, WARNING, ERROR, CRITICAL)
@@ -292,7 +289,7 @@ The developer-specific commands are
292289``` bash
293290pylint simulation_bridge
294291autopep8 --in-place --aggressive --recursive ' simulation_bridge'
295- pytest --cov=simulation_bridge --cov-report=term --cov-report=html simulation_bridge/test/unit/
292+ pytest --cov=simulation_bridge --cov-report=term --cov-report=html simulation_bridge/test/
296293open htmlcov/index.html
297294```
298295
0 commit comments