wmo-im / wis2downloader

The backend Python package for downloading real-time data from the WIS2 network.
Apache License 2.0
0 stars 0 forks source link

broker_url should be broker_host #15

Closed maaikelimper closed 3 weeks ago

maaikelimper commented 1 month ago

In the configuration of wis2-downloader a user has to define "broker_url", "broker_port" and "protocol"

URL would be defined including the port and protocol, for example: mqtts://globalbroker.meteo.fr:8883 , instead the broker_url should be broker_host in the way it is used in wis2-downloader ....

david-i-berry commented 1 month ago

Variables renamed to:

{
    ...
    "broker_hostname": "globalbroker.meteo.fr",
    "broker_password": "everyone",
    "broker_port": 443,
    "broker_protocol": "websockets",
    "broker_username": "everyone",
    ...
}
maaikelimper commented 3 weeks ago

https://github.com/wmo-im/wis2downloader/pull/18