Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update timeouts to give examples in Golang durations #46

Closed
wants to merge 3 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -143,7 +143,7 @@ Environmental variables:
| `function_process` | Yes | Process to execute a server in `http` mode or to be executed for each request in the other modes. For non `http` mode the process must accept input via STDIN and print output via STDOUT. Alias: `fprocess` |
| `read_timeout` | Yes | HTTP timeout for reading the payload from the client caller (in seconds) |
| `write_timeout` | Yes | HTTP timeout for writing a response body from your function (in seconds) |
| `exec_timeout` | Yes | Exec timeout for process exec'd for each incoming request (in seconds). Disabled if set to 0. |
| `exec_timeout` | Yes | Exec timeout for process exec'd for each incoming request. Timeout is entered in unit of time. Example: 60s. Disabled if set to 0s. |
| `port` | Yes | Specify an alternative TCP port for testing. Default: `8080` |
| `write_debug` | No | Write all output, error messages, and additional information to the logs. Default is `false`. |
| `content_type` | Yes | Force a specific Content-Type response for all responses - only in forking/serializing modes. |
Expand Down