From 1c57860df002044d3df08154f606aa89539a1aa5 Mon Sep 17 00:00:00 2001 From: Oleksii Ivanov Date: Tue, 26 Mar 2024 12:03:28 +0200 Subject: [PATCH 1/2] docs(ootbc): Update timeout settings in network communication docs --- docs/components/connectors/protocol/graphql.md | 9 ++++++--- docs/components/connectors/protocol/rest.md | 11 +++++++---- .../components/connectors/protocol/graphql.md | 9 ++++++--- .../components/connectors/protocol/rest.md | 11 +++++++---- .../components/connectors/protocol/graphql.md | 9 ++++++--- .../components/connectors/protocol/rest.md | 11 +++++++---- .../components/connectors/protocol/graphql.md | 9 ++++++--- .../components/connectors/protocol/rest.md | 11 +++++++---- .../components/connectors/protocol/graphql.md | 9 ++++++--- .../components/connectors/protocol/rest.md | 11 +++++++---- 10 files changed, 65 insertions(+), 35 deletions(-) diff --git a/docs/components/connectors/protocol/graphql.md b/docs/components/connectors/protocol/graphql.md index e9a21af727..cde3b48210 100644 --- a/docs/components/connectors/protocol/graphql.md +++ b/docs/components/connectors/protocol/graphql.md @@ -177,10 +177,13 @@ Variables: } ``` -### Connection Timeout +### Network Communication Timeouts -To set connection timeout in your request, set it in seconds in the **Connection Timeout** section. -This is not a required field, with a default value of 20 seconds. To set an infinite timeout, set this value to `0`. +- **Connection timeout in seconds** setting determines the time frame in which the client will try to establish a connection with the server. If you do not specify a value, the system uses the default of 20 seconds. For cases where you need to wait indefinitely, set this value to 0. + +- **Read timeout in seconds** is the amount of time the client will wait to read data from the server after the connection has been made. The default is also set to 20 seconds. To allow an unlimited wait time for slow responses, you can set this to 0. + +- **Write timeout in seconds** controls how long the client will wait to successfully send data to the server. The default setting for this is 0, indicating that there is no limit and the client will wait indefinitely for the operation to complete. ## Response mapping diff --git a/docs/components/connectors/protocol/rest.md b/docs/components/connectors/protocol/rest.md index be7fcd686f..16488d8574 100644 --- a/docs/components/connectors/protocol/rest.md +++ b/docs/components/connectors/protocol/rest.md @@ -7,7 +7,7 @@ description: Make a request to a REST API and use the response in the next steps :::caution If you use the REST Connector, ensure you do not have any instance variable named in the list below: -- `body`, `url`, `method`, `headers`, `authentication`, `queryParameters`, `connectionTimeoutInSeconds` +- `body`, `url`, `method`, `headers`, `authentication`, `queryParameters`, `connectionTimeoutInSeconds`, `readTimeoutInSeconds`, `writeTimeoutInSeconds` ::: @@ -167,10 +167,13 @@ Secrets are currently not supported in the body of a **REST Connector**. } ``` -### Connection timeout +### Network Communication Timeouts -To set connection timeout in your request, set it in seconds in the **Connection timeout** section. -This is not a required field, with a default value of 20 seconds. To set an infinite timeout, set this value to `0`. +- **Connection timeout in seconds** setting determines the time frame in which the client will try to establish a connection with the server. If you do not specify a value, the system uses the default of 20 seconds. For cases where you need to wait indefinitely, set this value to 0. + +- **Read timeout in seconds** is the amount of time the client will wait to read data from the server after the connection has been made. The default is also set to 20 seconds. To allow an unlimited wait time for slow responses, you can set this to 0. + +- **Write timeout in seconds** controls how long the client will wait to successfully send data to the server. The default setting for this is 0, indicating that there is no limit and the client will wait indefinitely for the operation to complete. ## Response diff --git a/versioned_docs/version-8.1/components/connectors/protocol/graphql.md b/versioned_docs/version-8.1/components/connectors/protocol/graphql.md index e9a21af727..cde3b48210 100644 --- a/versioned_docs/version-8.1/components/connectors/protocol/graphql.md +++ b/versioned_docs/version-8.1/components/connectors/protocol/graphql.md @@ -177,10 +177,13 @@ Variables: } ``` -### Connection Timeout +### Network Communication Timeouts -To set connection timeout in your request, set it in seconds in the **Connection Timeout** section. -This is not a required field, with a default value of 20 seconds. To set an infinite timeout, set this value to `0`. +- **Connection timeout in seconds** setting determines the time frame in which the client will try to establish a connection with the server. If you do not specify a value, the system uses the default of 20 seconds. For cases where you need to wait indefinitely, set this value to 0. + +- **Read timeout in seconds** is the amount of time the client will wait to read data from the server after the connection has been made. The default is also set to 20 seconds. To allow an unlimited wait time for slow responses, you can set this to 0. + +- **Write timeout in seconds** controls how long the client will wait to successfully send data to the server. The default setting for this is 0, indicating that there is no limit and the client will wait indefinitely for the operation to complete. ## Response mapping diff --git a/versioned_docs/version-8.1/components/connectors/protocol/rest.md b/versioned_docs/version-8.1/components/connectors/protocol/rest.md index 28d699fdce..a44321fc35 100644 --- a/versioned_docs/version-8.1/components/connectors/protocol/rest.md +++ b/versioned_docs/version-8.1/components/connectors/protocol/rest.md @@ -7,7 +7,7 @@ description: Make a request to a REST API and use the response in the next steps :::caution If you use the REST Connector, ensure you do not have any instance variable named in the list below: -- `body`, `url`, `method`, `headers`, `authentication`, `queryParameters`, `connectionTimeoutInSeconds` +- `body`, `url`, `method`, `headers`, `authentication`, `queryParameters`, `connectionTimeoutInSeconds`, `readTimeoutInSeconds`, `writeTimeoutInSeconds` ::: @@ -167,10 +167,13 @@ Secrets are currently not supported in the body of a **REST Connector**. } ``` -### Connection timeout +### Network Communication Timeouts -To set connection timeout in your request, set it in seconds in the **Connection timeout** section. -This is not a required field, with a default value of 20 seconds. To set an infinite timeout, set this value to `0`. +- **Connection timeout in seconds** setting determines the time frame in which the client will try to establish a connection with the server. If you do not specify a value, the system uses the default of 20 seconds. For cases where you need to wait indefinitely, set this value to 0. + +- **Read timeout in seconds** is the amount of time the client will wait to read data from the server after the connection has been made. The default is also set to 20 seconds. To allow an unlimited wait time for slow responses, you can set this to 0. + +- **Write timeout in seconds** controls how long the client will wait to successfully send data to the server. The default setting for this is 0, indicating that there is no limit and the client will wait indefinitely for the operation to complete. ## Response diff --git a/versioned_docs/version-8.2/components/connectors/protocol/graphql.md b/versioned_docs/version-8.2/components/connectors/protocol/graphql.md index e9a21af727..cde3b48210 100644 --- a/versioned_docs/version-8.2/components/connectors/protocol/graphql.md +++ b/versioned_docs/version-8.2/components/connectors/protocol/graphql.md @@ -177,10 +177,13 @@ Variables: } ``` -### Connection Timeout +### Network Communication Timeouts -To set connection timeout in your request, set it in seconds in the **Connection Timeout** section. -This is not a required field, with a default value of 20 seconds. To set an infinite timeout, set this value to `0`. +- **Connection timeout in seconds** setting determines the time frame in which the client will try to establish a connection with the server. If you do not specify a value, the system uses the default of 20 seconds. For cases where you need to wait indefinitely, set this value to 0. + +- **Read timeout in seconds** is the amount of time the client will wait to read data from the server after the connection has been made. The default is also set to 20 seconds. To allow an unlimited wait time for slow responses, you can set this to 0. + +- **Write timeout in seconds** controls how long the client will wait to successfully send data to the server. The default setting for this is 0, indicating that there is no limit and the client will wait indefinitely for the operation to complete. ## Response mapping diff --git a/versioned_docs/version-8.2/components/connectors/protocol/rest.md b/versioned_docs/version-8.2/components/connectors/protocol/rest.md index be7fcd686f..16488d8574 100644 --- a/versioned_docs/version-8.2/components/connectors/protocol/rest.md +++ b/versioned_docs/version-8.2/components/connectors/protocol/rest.md @@ -7,7 +7,7 @@ description: Make a request to a REST API and use the response in the next steps :::caution If you use the REST Connector, ensure you do not have any instance variable named in the list below: -- `body`, `url`, `method`, `headers`, `authentication`, `queryParameters`, `connectionTimeoutInSeconds` +- `body`, `url`, `method`, `headers`, `authentication`, `queryParameters`, `connectionTimeoutInSeconds`, `readTimeoutInSeconds`, `writeTimeoutInSeconds` ::: @@ -167,10 +167,13 @@ Secrets are currently not supported in the body of a **REST Connector**. } ``` -### Connection timeout +### Network Communication Timeouts -To set connection timeout in your request, set it in seconds in the **Connection timeout** section. -This is not a required field, with a default value of 20 seconds. To set an infinite timeout, set this value to `0`. +- **Connection timeout in seconds** setting determines the time frame in which the client will try to establish a connection with the server. If you do not specify a value, the system uses the default of 20 seconds. For cases where you need to wait indefinitely, set this value to 0. + +- **Read timeout in seconds** is the amount of time the client will wait to read data from the server after the connection has been made. The default is also set to 20 seconds. To allow an unlimited wait time for slow responses, you can set this to 0. + +- **Write timeout in seconds** controls how long the client will wait to successfully send data to the server. The default setting for this is 0, indicating that there is no limit and the client will wait indefinitely for the operation to complete. ## Response diff --git a/versioned_docs/version-8.3/components/connectors/protocol/graphql.md b/versioned_docs/version-8.3/components/connectors/protocol/graphql.md index e9a21af727..cde3b48210 100644 --- a/versioned_docs/version-8.3/components/connectors/protocol/graphql.md +++ b/versioned_docs/version-8.3/components/connectors/protocol/graphql.md @@ -177,10 +177,13 @@ Variables: } ``` -### Connection Timeout +### Network Communication Timeouts -To set connection timeout in your request, set it in seconds in the **Connection Timeout** section. -This is not a required field, with a default value of 20 seconds. To set an infinite timeout, set this value to `0`. +- **Connection timeout in seconds** setting determines the time frame in which the client will try to establish a connection with the server. If you do not specify a value, the system uses the default of 20 seconds. For cases where you need to wait indefinitely, set this value to 0. + +- **Read timeout in seconds** is the amount of time the client will wait to read data from the server after the connection has been made. The default is also set to 20 seconds. To allow an unlimited wait time for slow responses, you can set this to 0. + +- **Write timeout in seconds** controls how long the client will wait to successfully send data to the server. The default setting for this is 0, indicating that there is no limit and the client will wait indefinitely for the operation to complete. ## Response mapping diff --git a/versioned_docs/version-8.3/components/connectors/protocol/rest.md b/versioned_docs/version-8.3/components/connectors/protocol/rest.md index be7fcd686f..16488d8574 100644 --- a/versioned_docs/version-8.3/components/connectors/protocol/rest.md +++ b/versioned_docs/version-8.3/components/connectors/protocol/rest.md @@ -7,7 +7,7 @@ description: Make a request to a REST API and use the response in the next steps :::caution If you use the REST Connector, ensure you do not have any instance variable named in the list below: -- `body`, `url`, `method`, `headers`, `authentication`, `queryParameters`, `connectionTimeoutInSeconds` +- `body`, `url`, `method`, `headers`, `authentication`, `queryParameters`, `connectionTimeoutInSeconds`, `readTimeoutInSeconds`, `writeTimeoutInSeconds` ::: @@ -167,10 +167,13 @@ Secrets are currently not supported in the body of a **REST Connector**. } ``` -### Connection timeout +### Network Communication Timeouts -To set connection timeout in your request, set it in seconds in the **Connection timeout** section. -This is not a required field, with a default value of 20 seconds. To set an infinite timeout, set this value to `0`. +- **Connection timeout in seconds** setting determines the time frame in which the client will try to establish a connection with the server. If you do not specify a value, the system uses the default of 20 seconds. For cases where you need to wait indefinitely, set this value to 0. + +- **Read timeout in seconds** is the amount of time the client will wait to read data from the server after the connection has been made. The default is also set to 20 seconds. To allow an unlimited wait time for slow responses, you can set this to 0. + +- **Write timeout in seconds** controls how long the client will wait to successfully send data to the server. The default setting for this is 0, indicating that there is no limit and the client will wait indefinitely for the operation to complete. ## Response diff --git a/versioned_docs/version-8.4/components/connectors/protocol/graphql.md b/versioned_docs/version-8.4/components/connectors/protocol/graphql.md index e9a21af727..cde3b48210 100644 --- a/versioned_docs/version-8.4/components/connectors/protocol/graphql.md +++ b/versioned_docs/version-8.4/components/connectors/protocol/graphql.md @@ -177,10 +177,13 @@ Variables: } ``` -### Connection Timeout +### Network Communication Timeouts -To set connection timeout in your request, set it in seconds in the **Connection Timeout** section. -This is not a required field, with a default value of 20 seconds. To set an infinite timeout, set this value to `0`. +- **Connection timeout in seconds** setting determines the time frame in which the client will try to establish a connection with the server. If you do not specify a value, the system uses the default of 20 seconds. For cases where you need to wait indefinitely, set this value to 0. + +- **Read timeout in seconds** is the amount of time the client will wait to read data from the server after the connection has been made. The default is also set to 20 seconds. To allow an unlimited wait time for slow responses, you can set this to 0. + +- **Write timeout in seconds** controls how long the client will wait to successfully send data to the server. The default setting for this is 0, indicating that there is no limit and the client will wait indefinitely for the operation to complete. ## Response mapping diff --git a/versioned_docs/version-8.4/components/connectors/protocol/rest.md b/versioned_docs/version-8.4/components/connectors/protocol/rest.md index be7fcd686f..16488d8574 100644 --- a/versioned_docs/version-8.4/components/connectors/protocol/rest.md +++ b/versioned_docs/version-8.4/components/connectors/protocol/rest.md @@ -7,7 +7,7 @@ description: Make a request to a REST API and use the response in the next steps :::caution If you use the REST Connector, ensure you do not have any instance variable named in the list below: -- `body`, `url`, `method`, `headers`, `authentication`, `queryParameters`, `connectionTimeoutInSeconds` +- `body`, `url`, `method`, `headers`, `authentication`, `queryParameters`, `connectionTimeoutInSeconds`, `readTimeoutInSeconds`, `writeTimeoutInSeconds` ::: @@ -167,10 +167,13 @@ Secrets are currently not supported in the body of a **REST Connector**. } ``` -### Connection timeout +### Network Communication Timeouts -To set connection timeout in your request, set it in seconds in the **Connection timeout** section. -This is not a required field, with a default value of 20 seconds. To set an infinite timeout, set this value to `0`. +- **Connection timeout in seconds** setting determines the time frame in which the client will try to establish a connection with the server. If you do not specify a value, the system uses the default of 20 seconds. For cases where you need to wait indefinitely, set this value to 0. + +- **Read timeout in seconds** is the amount of time the client will wait to read data from the server after the connection has been made. The default is also set to 20 seconds. To allow an unlimited wait time for slow responses, you can set this to 0. + +- **Write timeout in seconds** controls how long the client will wait to successfully send data to the server. The default setting for this is 0, indicating that there is no limit and the client will wait indefinitely for the operation to complete. ## Response From 9f32e538ed92ec54901fd1225dfedc868ea96022 Mon Sep 17 00:00:00 2001 From: Christina Ausley Date: Tue, 26 Mar 2024 12:32:10 -0400 Subject: [PATCH 2/2] style(formatting): technical review --- docs/components/connectors/protocol/graphql.md | 6 +++--- docs/components/connectors/protocol/rest.md | 6 +++--- .../version-8.1/components/connectors/protocol/graphql.md | 6 +++--- .../version-8.1/components/connectors/protocol/rest.md | 6 +++--- .../version-8.2/components/connectors/protocol/graphql.md | 6 +++--- .../version-8.2/components/connectors/protocol/rest.md | 6 +++--- .../version-8.3/components/connectors/protocol/graphql.md | 6 +++--- .../version-8.3/components/connectors/protocol/rest.md | 6 +++--- .../version-8.4/components/connectors/protocol/graphql.md | 6 +++--- .../version-8.4/components/connectors/protocol/rest.md | 6 +++--- 10 files changed, 30 insertions(+), 30 deletions(-) diff --git a/docs/components/connectors/protocol/graphql.md b/docs/components/connectors/protocol/graphql.md index cde3b48210..f73c627bd1 100644 --- a/docs/components/connectors/protocol/graphql.md +++ b/docs/components/connectors/protocol/graphql.md @@ -177,11 +177,11 @@ Variables: } ``` -### Network Communication Timeouts +### Network communication timeouts -- **Connection timeout in seconds** setting determines the time frame in which the client will try to establish a connection with the server. If you do not specify a value, the system uses the default of 20 seconds. For cases where you need to wait indefinitely, set this value to 0. +- **Connection timeout in seconds** determines the time frame in which the client will try to establish a connection with the server. If you do not specify a value, the system uses the default of 20 seconds. For cases where you need to wait indefinitely, set this value to 0. -- **Read timeout in seconds** is the amount of time the client will wait to read data from the server after the connection has been made. The default is also set to 20 seconds. To allow an unlimited wait time for slow responses, you can set this to 0. +- **Read timeout in seconds** is the amount of time the client will wait to read data from the server after the connection has been made. The default is also set to 20 seconds. To allow an unlimited wait time for slow responses, set this to 0. - **Write timeout in seconds** controls how long the client will wait to successfully send data to the server. The default setting for this is 0, indicating that there is no limit and the client will wait indefinitely for the operation to complete. diff --git a/docs/components/connectors/protocol/rest.md b/docs/components/connectors/protocol/rest.md index 16488d8574..90aea6605a 100644 --- a/docs/components/connectors/protocol/rest.md +++ b/docs/components/connectors/protocol/rest.md @@ -167,11 +167,11 @@ Secrets are currently not supported in the body of a **REST Connector**. } ``` -### Network Communication Timeouts +### Network communication timeouts -- **Connection timeout in seconds** setting determines the time frame in which the client will try to establish a connection with the server. If you do not specify a value, the system uses the default of 20 seconds. For cases where you need to wait indefinitely, set this value to 0. +- **Connection timeout in seconds** determines the time frame in which the client will try to establish a connection with the server. If you do not specify a value, the system uses the default of 20 seconds. For cases where you need to wait indefinitely, set this value to 0. -- **Read timeout in seconds** is the amount of time the client will wait to read data from the server after the connection has been made. The default is also set to 20 seconds. To allow an unlimited wait time for slow responses, you can set this to 0. +- **Read timeout in seconds** is the amount of time the client will wait to read data from the server after the connection has been made. The default is also set to 20 seconds. To allow an unlimited wait time for slow responses, set this to 0. - **Write timeout in seconds** controls how long the client will wait to successfully send data to the server. The default setting for this is 0, indicating that there is no limit and the client will wait indefinitely for the operation to complete. diff --git a/versioned_docs/version-8.1/components/connectors/protocol/graphql.md b/versioned_docs/version-8.1/components/connectors/protocol/graphql.md index cde3b48210..f73c627bd1 100644 --- a/versioned_docs/version-8.1/components/connectors/protocol/graphql.md +++ b/versioned_docs/version-8.1/components/connectors/protocol/graphql.md @@ -177,11 +177,11 @@ Variables: } ``` -### Network Communication Timeouts +### Network communication timeouts -- **Connection timeout in seconds** setting determines the time frame in which the client will try to establish a connection with the server. If you do not specify a value, the system uses the default of 20 seconds. For cases where you need to wait indefinitely, set this value to 0. +- **Connection timeout in seconds** determines the time frame in which the client will try to establish a connection with the server. If you do not specify a value, the system uses the default of 20 seconds. For cases where you need to wait indefinitely, set this value to 0. -- **Read timeout in seconds** is the amount of time the client will wait to read data from the server after the connection has been made. The default is also set to 20 seconds. To allow an unlimited wait time for slow responses, you can set this to 0. +- **Read timeout in seconds** is the amount of time the client will wait to read data from the server after the connection has been made. The default is also set to 20 seconds. To allow an unlimited wait time for slow responses, set this to 0. - **Write timeout in seconds** controls how long the client will wait to successfully send data to the server. The default setting for this is 0, indicating that there is no limit and the client will wait indefinitely for the operation to complete. diff --git a/versioned_docs/version-8.1/components/connectors/protocol/rest.md b/versioned_docs/version-8.1/components/connectors/protocol/rest.md index a44321fc35..a4c989125f 100644 --- a/versioned_docs/version-8.1/components/connectors/protocol/rest.md +++ b/versioned_docs/version-8.1/components/connectors/protocol/rest.md @@ -167,11 +167,11 @@ Secrets are currently not supported in the body of a **REST Connector**. } ``` -### Network Communication Timeouts +### Network communication timeouts -- **Connection timeout in seconds** setting determines the time frame in which the client will try to establish a connection with the server. If you do not specify a value, the system uses the default of 20 seconds. For cases where you need to wait indefinitely, set this value to 0. +- **Connection timeout in seconds** determines the time frame in which the client will try to establish a connection with the server. If you do not specify a value, the system uses the default of 20 seconds. For cases where you need to wait indefinitely, set this value to 0. -- **Read timeout in seconds** is the amount of time the client will wait to read data from the server after the connection has been made. The default is also set to 20 seconds. To allow an unlimited wait time for slow responses, you can set this to 0. +- **Read timeout in seconds** is the amount of time the client will wait to read data from the server after the connection has been made. The default is also set to 20 seconds. To allow an unlimited wait time for slow responses, set this to 0. - **Write timeout in seconds** controls how long the client will wait to successfully send data to the server. The default setting for this is 0, indicating that there is no limit and the client will wait indefinitely for the operation to complete. diff --git a/versioned_docs/version-8.2/components/connectors/protocol/graphql.md b/versioned_docs/version-8.2/components/connectors/protocol/graphql.md index cde3b48210..f73c627bd1 100644 --- a/versioned_docs/version-8.2/components/connectors/protocol/graphql.md +++ b/versioned_docs/version-8.2/components/connectors/protocol/graphql.md @@ -177,11 +177,11 @@ Variables: } ``` -### Network Communication Timeouts +### Network communication timeouts -- **Connection timeout in seconds** setting determines the time frame in which the client will try to establish a connection with the server. If you do not specify a value, the system uses the default of 20 seconds. For cases where you need to wait indefinitely, set this value to 0. +- **Connection timeout in seconds** determines the time frame in which the client will try to establish a connection with the server. If you do not specify a value, the system uses the default of 20 seconds. For cases where you need to wait indefinitely, set this value to 0. -- **Read timeout in seconds** is the amount of time the client will wait to read data from the server after the connection has been made. The default is also set to 20 seconds. To allow an unlimited wait time for slow responses, you can set this to 0. +- **Read timeout in seconds** is the amount of time the client will wait to read data from the server after the connection has been made. The default is also set to 20 seconds. To allow an unlimited wait time for slow responses, set this to 0. - **Write timeout in seconds** controls how long the client will wait to successfully send data to the server. The default setting for this is 0, indicating that there is no limit and the client will wait indefinitely for the operation to complete. diff --git a/versioned_docs/version-8.2/components/connectors/protocol/rest.md b/versioned_docs/version-8.2/components/connectors/protocol/rest.md index 16488d8574..90aea6605a 100644 --- a/versioned_docs/version-8.2/components/connectors/protocol/rest.md +++ b/versioned_docs/version-8.2/components/connectors/protocol/rest.md @@ -167,11 +167,11 @@ Secrets are currently not supported in the body of a **REST Connector**. } ``` -### Network Communication Timeouts +### Network communication timeouts -- **Connection timeout in seconds** setting determines the time frame in which the client will try to establish a connection with the server. If you do not specify a value, the system uses the default of 20 seconds. For cases where you need to wait indefinitely, set this value to 0. +- **Connection timeout in seconds** determines the time frame in which the client will try to establish a connection with the server. If you do not specify a value, the system uses the default of 20 seconds. For cases where you need to wait indefinitely, set this value to 0. -- **Read timeout in seconds** is the amount of time the client will wait to read data from the server after the connection has been made. The default is also set to 20 seconds. To allow an unlimited wait time for slow responses, you can set this to 0. +- **Read timeout in seconds** is the amount of time the client will wait to read data from the server after the connection has been made. The default is also set to 20 seconds. To allow an unlimited wait time for slow responses, set this to 0. - **Write timeout in seconds** controls how long the client will wait to successfully send data to the server. The default setting for this is 0, indicating that there is no limit and the client will wait indefinitely for the operation to complete. diff --git a/versioned_docs/version-8.3/components/connectors/protocol/graphql.md b/versioned_docs/version-8.3/components/connectors/protocol/graphql.md index cde3b48210..f73c627bd1 100644 --- a/versioned_docs/version-8.3/components/connectors/protocol/graphql.md +++ b/versioned_docs/version-8.3/components/connectors/protocol/graphql.md @@ -177,11 +177,11 @@ Variables: } ``` -### Network Communication Timeouts +### Network communication timeouts -- **Connection timeout in seconds** setting determines the time frame in which the client will try to establish a connection with the server. If you do not specify a value, the system uses the default of 20 seconds. For cases where you need to wait indefinitely, set this value to 0. +- **Connection timeout in seconds** determines the time frame in which the client will try to establish a connection with the server. If you do not specify a value, the system uses the default of 20 seconds. For cases where you need to wait indefinitely, set this value to 0. -- **Read timeout in seconds** is the amount of time the client will wait to read data from the server after the connection has been made. The default is also set to 20 seconds. To allow an unlimited wait time for slow responses, you can set this to 0. +- **Read timeout in seconds** is the amount of time the client will wait to read data from the server after the connection has been made. The default is also set to 20 seconds. To allow an unlimited wait time for slow responses, set this to 0. - **Write timeout in seconds** controls how long the client will wait to successfully send data to the server. The default setting for this is 0, indicating that there is no limit and the client will wait indefinitely for the operation to complete. diff --git a/versioned_docs/version-8.3/components/connectors/protocol/rest.md b/versioned_docs/version-8.3/components/connectors/protocol/rest.md index 16488d8574..90aea6605a 100644 --- a/versioned_docs/version-8.3/components/connectors/protocol/rest.md +++ b/versioned_docs/version-8.3/components/connectors/protocol/rest.md @@ -167,11 +167,11 @@ Secrets are currently not supported in the body of a **REST Connector**. } ``` -### Network Communication Timeouts +### Network communication timeouts -- **Connection timeout in seconds** setting determines the time frame in which the client will try to establish a connection with the server. If you do not specify a value, the system uses the default of 20 seconds. For cases where you need to wait indefinitely, set this value to 0. +- **Connection timeout in seconds** determines the time frame in which the client will try to establish a connection with the server. If you do not specify a value, the system uses the default of 20 seconds. For cases where you need to wait indefinitely, set this value to 0. -- **Read timeout in seconds** is the amount of time the client will wait to read data from the server after the connection has been made. The default is also set to 20 seconds. To allow an unlimited wait time for slow responses, you can set this to 0. +- **Read timeout in seconds** is the amount of time the client will wait to read data from the server after the connection has been made. The default is also set to 20 seconds. To allow an unlimited wait time for slow responses, set this to 0. - **Write timeout in seconds** controls how long the client will wait to successfully send data to the server. The default setting for this is 0, indicating that there is no limit and the client will wait indefinitely for the operation to complete. diff --git a/versioned_docs/version-8.4/components/connectors/protocol/graphql.md b/versioned_docs/version-8.4/components/connectors/protocol/graphql.md index cde3b48210..f73c627bd1 100644 --- a/versioned_docs/version-8.4/components/connectors/protocol/graphql.md +++ b/versioned_docs/version-8.4/components/connectors/protocol/graphql.md @@ -177,11 +177,11 @@ Variables: } ``` -### Network Communication Timeouts +### Network communication timeouts -- **Connection timeout in seconds** setting determines the time frame in which the client will try to establish a connection with the server. If you do not specify a value, the system uses the default of 20 seconds. For cases where you need to wait indefinitely, set this value to 0. +- **Connection timeout in seconds** determines the time frame in which the client will try to establish a connection with the server. If you do not specify a value, the system uses the default of 20 seconds. For cases where you need to wait indefinitely, set this value to 0. -- **Read timeout in seconds** is the amount of time the client will wait to read data from the server after the connection has been made. The default is also set to 20 seconds. To allow an unlimited wait time for slow responses, you can set this to 0. +- **Read timeout in seconds** is the amount of time the client will wait to read data from the server after the connection has been made. The default is also set to 20 seconds. To allow an unlimited wait time for slow responses, set this to 0. - **Write timeout in seconds** controls how long the client will wait to successfully send data to the server. The default setting for this is 0, indicating that there is no limit and the client will wait indefinitely for the operation to complete. diff --git a/versioned_docs/version-8.4/components/connectors/protocol/rest.md b/versioned_docs/version-8.4/components/connectors/protocol/rest.md index 16488d8574..90aea6605a 100644 --- a/versioned_docs/version-8.4/components/connectors/protocol/rest.md +++ b/versioned_docs/version-8.4/components/connectors/protocol/rest.md @@ -167,11 +167,11 @@ Secrets are currently not supported in the body of a **REST Connector**. } ``` -### Network Communication Timeouts +### Network communication timeouts -- **Connection timeout in seconds** setting determines the time frame in which the client will try to establish a connection with the server. If you do not specify a value, the system uses the default of 20 seconds. For cases where you need to wait indefinitely, set this value to 0. +- **Connection timeout in seconds** determines the time frame in which the client will try to establish a connection with the server. If you do not specify a value, the system uses the default of 20 seconds. For cases where you need to wait indefinitely, set this value to 0. -- **Read timeout in seconds** is the amount of time the client will wait to read data from the server after the connection has been made. The default is also set to 20 seconds. To allow an unlimited wait time for slow responses, you can set this to 0. +- **Read timeout in seconds** is the amount of time the client will wait to read data from the server after the connection has been made. The default is also set to 20 seconds. To allow an unlimited wait time for slow responses, set this to 0. - **Write timeout in seconds** controls how long the client will wait to successfully send data to the server. The default setting for this is 0, indicating that there is no limit and the client will wait indefinitely for the operation to complete.