[actions] fix broken doc for responseTimeout setting (#99146) (#99259)

resolves https://github.com/elastic/kibana/issues/98933

Some vertical bars in text got interpreted as a table, but should have been a
code example.  Changed to use commas instead of vertical bars.
This commit is contained in:
Patrick Mueller 2021-05-04 16:47:25 -04:00 committed by GitHub
parent c5be449b59
commit 7166137751
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -75,7 +75,11 @@ a|`xpack.actions.`
| Specifies the max number of bytes of the http response for requests to external resources. Defaults to 1000000 (1MB).
| `xpack.actions.responseTimeout` {ess-icon}
| Specifies the time allowed for requests to external resources. Requests that take longer are aborted. The time is formatted as <count>[ms|s|m|h|d|w|M|Y], for example, '20m', '24h', '7d', '1w'. Defaults to 60s.
| Specifies the time allowed for requests to external resources. Requests that take longer are aborted. The time is formatted as: +
+
`<count>[ms,s,m,h,d,w,M,Y]` +
+
For example, `20m`, `24h`, `7d`, `1w`. Defaults to `60s`.
|===