Skip to content
This repository was archived by the owner on May 5, 2025. It is now read-only.

Commit 5dffe21

Browse files
author
Pablo Mercado
authored
Merge pull request #113 from triggermesh/task/replace-frequency-with-interval
HTTP Poller: replace frequency with interval
2 parents 9f9d2b3 + 7662999 commit 5dffe21

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/sources/httppoller.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ In the Source creation form add the following information:
1919
- **EventSource**: (optional) string that identifies the origin for all CloudEvent messages produced from this source.
2020
- **Enpoint**: URL location for the remote service to be polled.
2121
- **Method**: HTTP method.
22-
- **Frequency**: periodicity for requests formatted as [Go duration][go-duration].
22+
- **Interval**: interval between requests formatted as [Go duration][go-duration].
2323
- **CA Certificate**: (optional) CA certificate configured for TLS connection as plain text.
2424
- **Skip Verify**: (optional) when set to true skips remote server TLS certificate verification.
2525
- **Basic Auth Username**: (optional) HTTP basic authentication username.
2626
- **Basic Auth Password** (optional) points to a secret that contains the HTTP basic authentication password.
2727
- **Headers** (optional) is a set of key/value pairs that will be set within the HTTP request.
2828

29-
`Frequency` is formatted after [Go's duration parsing][go-duration]. Most typically this value will contain a number followed by one of "ns", "us" or "µs", "ms", "s", "m", "h". Valid examples are `15000ms` or `15s` for 15 seconds, `60m` or `1h` for one hour.
29+
`Interval` is formatted after [Go's duration parsing][go-duration]. Most typically this value will contain a number followed by one of "ns", "us" or "µs", "ms", "s", "m", "h". Valid examples are `15000ms` or `15s` for 15 seconds, `60m` or `1h` for one hour.
3030

3131
When using `CA Certificate` it should be copied into the text area in plain text.
3232

0 commit comments

Comments
 (0)