Skip to content

Commit 8f84195

Browse files
authored
Change path in walkthrough call to match httpscaledobject from example (#1266)
Signed-off-by: Gilbert <[email protected]>
1 parent 46884e2 commit 8f84195

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/walkthrough.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ Now that you have your application running and your ingress configured, you can
134134
Regardless, you can use the below `curl` command to make a request to your application:
135135

136136
```console
137-
curl -H "Host: myhost.com" <Your IP>/path1
137+
curl -H "Host: myhost.com" <Your IP>/test
138138
```
139139

140140
>Note the `-H` flag above to specify the `Host` header. This is needed to tell the interceptor how to route the request. If you have a DNS name set up for the IP, you don't need this header.
@@ -143,7 +143,7 @@ You can also use port-forward to interceptor service for making the request:
143143

144144
```console
145145
kubectl port-forward svc/keda-add-ons-http-interceptor-proxy -n ${NAMESPACE} 8080:8080
146-
curl -H "Host: myhost.com" localhost:8080/path1
146+
curl -H "Host: myhost.com" localhost:8080/test
147147
```
148148

149149
### Integrating HTTP Add-On Scaler with other KEDA scalers

0 commit comments

Comments
 (0)