31 lines
1.2 KiB
ReStructuredText
31 lines
1.2 KiB
ReStructuredText
.. _-withoutRequestTimeout-:
|
|
|
|
withoutRequestTimeout
|
|
=====================
|
|
|
|
Signature
|
|
---------
|
|
|
|
.. includecode2:: /../../akka-http/src/main/scala/akka/http/scaladsl/server/directives/TimeoutDirectives.scala
|
|
:snippet: withoutRequestTimeout
|
|
|
|
Description
|
|
-----------
|
|
|
|
This directive enables "late" (during request processing) control over the :ref:`request-timeout` feature in Akka HTTP.
|
|
|
|
It is not recommended to turn off request timeouts using this method as it is inherently racy and disabling request timeouts
|
|
basically turns off the safety net against programming mistakes that it provides.
|
|
|
|
.. warning::
|
|
Please note that setting the timeout from within a directive is inherently racy (as the "point in time from which
|
|
we're measuring the timeout" is already in the past (the moment we started handling the request), so if the existing
|
|
timeout already was triggered before your directive had the chance to change it, an timeout may still be logged.
|
|
|
|
For more information about various timeouts in Akka HTTP see :ref:`http-timeouts`.
|
|
|
|
Example
|
|
-------
|
|
|
|
.. includecode2:: ../../../../code/docs/http/scaladsl/server/directives/TimeoutDirectivesExamplesSpec.scala
|
|
:snippet: withoutRequestTimeout
|