From 7662999c8e8dcc9a81880c8efb3b9740135039f5 Mon Sep 17 00:00:00 2001 From: Pablo Mercado Date: Thu, 1 Apr 2021 09:22:24 +0200 Subject: [PATCH] replace frequency with interval --- docs/sources/httppoller.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/sources/httppoller.md b/docs/sources/httppoller.md index bb09f8534..e629480cf 100644 --- a/docs/sources/httppoller.md +++ b/docs/sources/httppoller.md @@ -19,14 +19,14 @@ In the Source creation form add the following information: - **EventSource**: (optional) string that identifies the origin for all CloudEvent messages produced from this source. - **Enpoint**: URL location for the remote service to be polled. - **Method**: HTTP method. -- **Frequency**: periodicity for requests formatted as [Go duration][go-duration]. +- **Interval**: interval between requests formatted as [Go duration][go-duration]. - **CA Certificate**: (optional) CA certificate configured for TLS connection as plain text. - **Skip Verify**: (optional) when set to true skips remote server TLS certificate verification. - **Basic Auth Username**: (optional) HTTP basic authentication username. - **Basic Auth Password** (optional) points to a secret that contains the HTTP basic authentication password. - **Headers** (optional) is a set of key/value pairs that will be set within the HTTP request. -`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. +`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. When using `CA Certificate` it should be copied into the text area in plain text.