diff --git a/learn/app-development/services/web-services/rest-request-timeouts.md b/learn/app-development/services/web-services/rest-request-timeouts.md index cdd43fcf6..0b239fd3c 100644 --- a/learn/app-development/services/web-services/rest-request-timeouts.md +++ b/learn/app-development/services/web-services/rest-request-timeouts.md @@ -19,3 +19,4 @@ You can override REST properties for proxy REST calls configuration by sending t | **`app.rest.tlsVersions`** | TLSv1.3,TLSv1.2 | It allows configuring the TLS versions that the application will utilize for establishing secure connections while invoking REST APIs. TLSv1.3 abd TLSv1.2 are enabled by default. | | **`app.multipartconfig.maxFileSize`** | 300 MB | It defines the maximum upload size in bytes which prevents users from uploading files with size beyond the set limit. | | **`app.multipartconfig.maxRequestSize`** | -1 | It defines the maximum request size in bytes for multipart requests, ensuring the total size of incoming request does not exceed the specified limit. By Default there is no restriction on request size. | +| **`app.rest.connectionTimeToLive`** | -1 | Maximum time (in milliseconds) that a newly established connection can remain active in the connection pool. This property is applicable when importing a new REST API as well as for already imported REST API. |