Skip to content

Commit 20759ed

Browse files
Merge pull request #116394 from sandervandevelde/patch-19
Update mqtt-routing-filtering.md
2 parents 42e26e6 + f221886 commit 20759ed

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/event-grid/mqtt-routing-filtering.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@ If you send a non-JSON payload that is still UFT-8, it will be serialized as a J
5959
You can use the following filter to filter all the messages that include the word “Contoso”:
6060
```azurecli-interactive
6161
"advancedFilters": [{
62-
"operatorType": "`StringContains` ",
62+
"operatorType": "StringContains",
6363
"key": "data",
64-
"value": Contoso
64+
"value": "Contoso"
6565
}]
6666
```
6767

@@ -82,9 +82,9 @@ You can use the following filter to filter all the messages coming from your cli
8282

8383
```azurecli-interactive
8484
"advancedFilters": [{"
85-
operatorType": "`StringContains` ",
86-
"key": "`clienttype`",
87-
"value": sensor
85+
operatorType": "StringContains",
86+
"key": "clienttype",
87+
"value": "sensor"
8888
}]
8989
```
9090

0 commit comments

Comments
 (0)