Skip to content

Commit 0e7ccda

Browse files
authored
fixed error
1 parent 5499f28 commit 0e7ccda

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/azure-signalr/signalr-howto-work-with-app-gateway.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ When **_AG1_** is created, go to **Health probes** tab under **Settings** sectio
100100

101101
* Try with an invalid client request `https://asrs1.service.signalr.net/client` and it returns *400* with error message *'hub' query parameter is required.* It means the request arrived at the SignalR Service and did the request validation.
102102
```bash
103-
curl -v `https://asrs1.service.signalr.net/client`
103+
curl -v https://asrs1.service.signalr.net/client
104104
```
105105
returns
106106
```
@@ -198,7 +198,7 @@ Go to the **Backend pools** tab for **_AG1_**, and select **signalr**:
198198

199199
* Now let's visit `https://asrs1.service.signalr.net/client` again. With public access disabled, it returns *403* instead.
200200
```bash
201-
curl -v `https://asrs1.service.signalr.net/client`
201+
curl -v https://asrs1.service.signalr.net/client
202202
```
203203
returns
204204
```

0 commit comments

Comments
 (0)