Change gen_statem:call(_, _, {clean_timeout,infinity}) to use proxy #1595
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
I would like community feedback on a changing a corner case for timeouts in
gen_statem:call(Server, Request, Timeout)
for OTP 21.0.The
Timeout == {clean_timeout,infinity}
today means{dirty_timeout,infinity}
i.e does not use a proxy process. This was intended as an optimization.But since in the event of network problems such as the connection going down and up the monitor set before sending
Request
may trigger causing the client call to fail, but theRequest
may actually have arrived at the server, which may reply so we get an unhandled late reply in the inbox. Very rarely.I think that giving the programmer the possibility to use a proxy process even for infinity timeout simplifies the semantics and may be found useful.
The behaviour for
Timeout == infinity
will still mean{dirty_timeout,infinity}
that is: no proxy process.