Skip to content

Commit 1f27efd

Browse files
authored
[grid] update list CLI/TOML options (#1683)
Signed-off-by: Viet Nguyen Duc <[email protected]>
1 parent 4760e32 commit 1f27efd

File tree

8 files changed

+12
-0
lines changed

8 files changed

+12
-0
lines changed

website_and_docs/content/documentation/grid/configuration/cli_options.en.md

+1
Original file line numberDiff line numberDiff line change
@@ -237,6 +237,7 @@ pull request updating this page.
237237
| `--service-host` | string | `localhost` | Host name where the service that supports WebDriver commands is running |
238238
| `--service-port` | int | `4723` | Port where the service that supports WebDriver commands is running |
239239
| `--service-status-endpoint` | string | `/status` | Optional, endpoint to query the WebDriver service status, an HTTP 200 response is expected |
240+
| `--service-protocol-version` | string | `HTTP/1.1` | Optional, enforce a specific protocol version in HttpClient when communicating with the endpoint service status |
240241
| `--service-configuration` | string[] | `max-sessions=2 stereotype='{"browserName": "safari", "platformName": "iOS", "appium:platformVersion": "14.5"}}'` | Configuration for the service where calls will be relayed to. It is recommended to provide this type of configuration through a toml config file to improve readability. |
241242

242243
### Router

website_and_docs/content/documentation/grid/configuration/cli_options.ja.md

+1
Original file line numberDiff line numberDiff line change
@@ -236,6 +236,7 @@ Grid の設定には、さまざまなセクションが用意されています
236236
| `--service-host` | string | `localhost` | WebDriver コマンドをサポートしてるサービスが稼働しているホスト名。 |
237237
| `--service-port` | int | `4723` | WebDriver コマンドをサポートしてるサービスが稼働しているポート番号。 |
238238
| `--service-status-endpoint` | string | `/status` | WebDriver サービスの状態を問い合わせるエンドポイント、オプショナルです。HTTP 200 レスポンスが期待されます。 |
239+
| `--service-protocol-version` | string | `HTTP/1.1` | Optional, enforce a specific protocol version in HttpClient when communicating with the endpoint service status |
239240
| `--service-configuration` | string[] | `max-sessions=2 stereotype='{"browserName": "safari", "platformName": "iOS", "appium:platformVersion": "14.5"}}'` | 呼び出しの中継先となるサービスの設定。可読性向上のため、TOML ファイルで設定することを推奨します。 |
240241

241242
### Router

website_and_docs/content/documentation/grid/configuration/cli_options.pt-br.md

+1
Original file line numberDiff line numberDiff line change
@@ -240,6 +240,7 @@ e esteja à vontade para nos enviar um pull request com alterações a esta pág
240240
| `--service-host` | string | `localhost` | Host name where the service that supports WebDriver commands is running |
241241
| `--service-port` | int | `4723` | Port where the service that supports WebDriver commands is running |
242242
| `--service-status-endpoint` | string | `/status` | Optional, endpoint to query the WebDriver service status, an HTTP 200 response is expected |
243+
| `--service-protocol-version` | string | `HTTP/1.1` | Optional, enforce a specific protocol version in HttpClient when communicating with the endpoint service status |
243244
| `--service-configuration` | string[] | `max-sessions=2 stereotype='{"browserName": "safari", "platformName": "iOS", "appium:platformVersion": "14.5"}}'` | Configuration for the service where calls will be relayed to. It is recommended to provide this type of configuration through a toml config file to improve readability. |
244245

245246
### Router

website_and_docs/content/documentation/grid/configuration/cli_options.zh-cn.md

+1
Original file line numberDiff line numberDiff line change
@@ -246,6 +246,7 @@ pull request updating this page.
246246
| `--service-host` | string | `localhost` | Host name where the service that supports WebDriver commands is running |
247247
| `--service-port` | int | `4723` | Port where the service that supports WebDriver commands is running |
248248
| `--service-status-endpoint` | string | `/status` | Optional, endpoint to query the WebDriver service status, an HTTP 200 response is expected |
249+
| `--service-protocol-version` | string | `HTTP/1.1` | Optional, enforce a specific protocol version in HttpClient when communicating with the endpoint service status |
249250
| `--service-configuration` | string[] | `max-sessions=2 stereotype='{"browserName": "safari", "platformName": "iOS", "appium:platformVersion": "14.5"}}'` | Configuration for the service where calls will be relayed to. It is recommended to provide this type of configuration through a toml config file to improve readability. |
250251

251252
### Router

website_and_docs/content/documentation/grid/configuration/toml_options.en.md

+2
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,8 @@ detect-drivers = false
134134
# Default Appium/Cloud server endpoint
135135
url = "http://localhost:4723/wd/hub"
136136
status-endpoint = "/status"
137+
# Optional, enforce a specific protocol version in HttpClient when communicating with the endpoint service status (e.g. HTTP/1.1, HTTP/2)
138+
protocol-version = "HTTP/1.1"
137139
# Stereotypes supported by the service. The initial number is "max-sessions", and will allocate
138140
# that many test slots to that particular configuration
139141
configs = [

website_and_docs/content/documentation/grid/configuration/toml_options.ja.md

+2
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,8 @@ detect-drivers = false
131131
# Default Appium/Cloud server endpoint
132132
url = "http://localhost:4723/wd/hub"
133133
status-endpoint = "/status"
134+
# Optional, enforce a specific protocol version in HttpClient when communicating with the endpoint service status (e.g. HTTP/1.1, HTTP/2)
135+
protocol-version = "HTTP/1.1"
134136
# Stereotypes supported by the service. The initial number is "max-sessions", and will allocate
135137
# that many test slots to that particular configuration
136138
configs = [

website_and_docs/content/documentation/grid/configuration/toml_options.pt-br.md

+2
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,8 @@ detect-drivers = false
143143
# Default Appium/Cloud server endpoint
144144
url = "http://localhost:4723/wd/hub"
145145
status-endpoint = "/status"
146+
# Optional, enforce a specific protocol version in HttpClient when communicating with the endpoint service status (e.g. HTTP/1.1, HTTP/2)
147+
protocol-version = "HTTP/1.1"
146148
# Stereotypes supported by the service. The initial number is "max-sessions", and will allocate
147149
# that many test slots to that particular configuration
148150
configs = [

website_and_docs/content/documentation/grid/configuration/toml_options.zh-cn.md

+2
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,8 @@ detect-drivers = false
149149
# Default Appium/Cloud server endpoint
150150
url = "http://localhost:4723/wd/hub"
151151
status-endpoint = "/status"
152+
# Optional, enforce a specific protocol version in HttpClient when communicating with the endpoint service status (e.g. HTTP/1.1, HTTP/2)
153+
protocol-version = "HTTP/1.1"
152154
# Stereotypes supported by the service. The initial number is "max-sessions", and will allocate
153155
# that many test slots to that particular configuration
154156
configs = [

0 commit comments

Comments
 (0)