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

Pack server event and socket timeout override #553

Merged
merged 6 commits into from
Feb 19, 2013
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions lib/defaults.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,9 @@ exports.server = {
// timeout limits

timeout: {
client: 10000, // Determines how long to wait for a client connection to end before erroring out
server: null // server timeout disabled by default
socket: null, // Determines how long before closing request socket. Defaults to node (2 minutes)
client: 10 * 1000, // Determines how long to wait for receiving client payload. Defaults to 10 seconds
server: null // Determines how long to wait for server request processing. Disabled by default
},

// Optional components
Expand Down
Loading