You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Change all references to Hard timeout to Exec timeout
This commit updates all references to a Hard timeout, replacing it with
Exec timeout for consistency with the existing Watchdog where
`exec_timeout` is used.
Signed-off-by: John McCabe <[email protected]>
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ HTTP headers cannot be sent after function starts executing due to input/output
26
26
27
27
* A static Content-type can be set ahead of time.
28
28
29
-
*Hard timeout: supported.
29
+
*Exec timeout: supported.
30
30
31
31
### 2. Afterburn (mode=afterburn)
32
32
@@ -40,7 +40,7 @@ Vastly accelerated processing speed but requires a client library for each langu
40
40
41
41
* A dynamic Content-type can be set from the client library.
42
42
43
-
*Hard timeout: not supported.
43
+
*Exec timeout: not supported.
44
44
45
45
Example client libraries:
46
46
@@ -98,7 +98,7 @@ Reads entire request into memory from the HTTP request. At this point we seriali
98
98
99
99
* A static Content-type can be set ahead of time.
100
100
101
-
*Hard timeout: supported.
101
+
*Exec timeout: supported.
102
102
103
103
## Configuration
104
104
@@ -109,7 +109,7 @@ Environmental variables:
109
109
|`function_process`| Yes | The process to invoke for each function call function process (alias - fprocess). This must be a UNIX binary and accept input via STDIN and output via STDOUT. |
110
110
|`read_timeout`| Yes | HTTP timeout for reading the payload from the client caller (in seconds) |
111
111
|`write_timeout`| Yes | HTTP timeout for writing a response body from your function (in seconds) |
112
-
|`hard_timeout`| Yes |Hard timeout for process exec'd for each incoming request (in seconds). Disabled if set to 0. |
112
+
|`exec_timeout`| Yes |Exec timeout for process exec'd for each incoming request (in seconds). Disabled if set to 0. |
113
113
|`port`| Yes | Specify an alternative TCP port fo testing |
114
114
|`write_debug`| No | Write all output, error messages, and additional information to the logs. Default is false. |
115
115
|`content_type`| Yes | Force a specific Content-Type response for all responses - only in forking/serializing modes. |
0 commit comments