From 2fb2187aee5de59b88737c8c64f9f7346195a6a3 Mon Sep 17 00:00:00 2001 From: Lenny Goodell Date: Tue, 7 Feb 2023 16:47:05 -0700 Subject: [PATCH] refactor!: Update message bus topic wild cards (#512) BREAKING CHANGE: use MQTT wild cards + for single level and # for multiple levels Signed-off-by: Leonard Goodell --- res/sample/configuration.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/res/sample/configuration.toml b/res/sample/configuration.toml index 884d6cd6..c9669478 100644 --- a/res/sample/configuration.toml +++ b/res/sample/configuration.toml @@ -23,11 +23,11 @@ LogLevel = "INFO" [Writable.Pipeline.PerTopicPipelines] [Writable.Pipeline.PerTopicPipelines.float] Id = "float-pipeline" - Topics = "edgex/events/device/#/Random-Float-Device/#" + Topics = "edgex/events/device/+/Random-Float-Device/#" ExecutionOrder = "TransformJson, SetResponseData" [Writable.Pipeline.PerTopicPipelines.int8-16] Id = "int8-16-pipeline" - Topics = "edgex/events/device/#/#/Int8, edgex/events/device/#/#/Int16" + Topics = "edgex/events/device/+/+/Int8, edgex/events/device/+/+/Int16" ExecutionOrder = "TransformXml, SetResponseData" # The Pipeline.Functions sections define the parameter configuration for each specific function.