-
Notifications
You must be signed in to change notification settings - Fork 79
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 config documentation #426
Update config documentation #426
Conversation
Co-Authored-By: David Latorre <dvlato@gmail.com>
Co-Authored-By: David Latorre <dvlato@gmail.com>
… into update-config-documentation
# If set to 0, availableProcessors / 2 threads will be used | ||
clientWorkerThreadsCount: 0 | ||
# Worker threads are those performing all the asynchronous I/O operation on the inbound channel. | ||
# If set to 0, availableProcessors / 2 threads will be used |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think I would still remove this "If set to 0", as IIRC this was not the case here. Then let's change the example to something different from 0!
public int maxContentLength() { | ||
return this.maxContentLength; | ||
} | ||
|
||
/** | ||
* Time in milliseconds Styx Proxy Service waits for an incoming request from client. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This description is bit vague.
It would be worth clarifying that this parameter controls the amount of tolerated inactivity while the request is being received. If the client started sending the request, and then suddenly cuts it off, styx would detect this after requestTimeoutMillis
.
No description provided.