summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <matthias.beyer@ifm.com>2022-04-25 14:17:32 +0200
committerMatthias Beyer <matthias.beyer@ifm.com>2022-05-02 10:11:23 +0200
commit39dc12cd01c9f4cc528c749377126ea829475615 (patch)
tree4bde7a510b44d5ec31d22495ccf59ee7f89a66c9
parentbf6bc4640bd19e84f0a5f768de7ce244c8f5825e (diff)
Fix example config to map one topic to addressfeature/add_tedge_api/plugin-mqtt-one-target-per-subscription
This patch changes the MQTT plugin configuration in the example to reflect the change of behaviour of the MQTT plugin. A user is now able to map one subscribed topic to one target address. Signed-off-by: Matthias Beyer <matthias.beyer@ifm.com>
-rw-r--r--tedge/example-config.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/tedge/example-config.toml b/tedge/example-config.toml
index 0e4bd859..6467f654 100644
--- a/tedge/example-config.toml
+++ b/tedge/example-config.toml
@@ -78,11 +78,11 @@ kind = "mqtt"
[plugins.plugmqtt.configuration]
host = "tcp://localhost:1883"
-target = "logging"
[[plugins.plugmqtt.configuration.subscriptions]]
topic = "subs"
qos = "at_most_once"
+target = "logging"