Skip to content

Commit

Permalink
actualize *keepAliveTimeout description and default values after review
Browse files Browse the repository at this point in the history
  • Loading branch information
Slach committed Sep 3, 2024
1 parent 2e83864 commit c66120e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
12 changes: 9 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -186,13 +186,13 @@ Following extension configurations are supported:

- `azurite.blobHost` Blob service listening endpoint, by default 127.0.0.1
- `azurite.blobPort` Blob service listening port, by default 10000
- `azurite.blobKeepAliveTimeout` Blob service keep alive timeout, by default 5
- `azurite.blobKeepAliveTimeout` Blob service keep alive timeout, by default 5000
- `azurite.queueHost` Queue service listening endpoint, by default 127.0.0.1
- `azurite.queuePort` Queue service listening port, by default 10001
- `azurite.queueKeepAliveTimeout` Queue service keep alive timeout, by default 5
- `azurite.queueKeepAliveTimeout` Queue service keep alive timeout, by default 5000
- `azurite.tableHost` Table service listening endpoint, by default 127.0.0.1
- `azurite.tablePort` Table service listening port, by default 10002
- `azurite.tableKeepAliveTimeout` Queue service keep alive timeout, by default 5
- `azurite.tableKeepAliveTimeout` Queue service keep alive timeout, by default 5000
- `azurite.location` Workspace location folder path (can be relative or absolute). By default, in the VS Code extension, the currently opened folder is used. If launched from the command line, the current process working directory is the default. Relative paths are resolved relative to the default folder.
- `azurite.silent` Silent mode to disable access log in Visual Studio channel, by default false
- `azurite.debug` Output debug log into Azurite channel, by default false
Expand Down Expand Up @@ -250,14 +250,20 @@ Above command will try to start Azurite image with configurations:

`--blobHost 0.0.0.0` defines blob service listening endpoint to accept requests from host machine.

`--blobKeepAliveTimeout 5000` blob service keep alive timeout

`--queuePort 8888` makes Azurite queue service listen to port 8888, while `-p 8888:8888` redirects requests from host machine's port 8888 to docker instance.

`--queueHost 0.0.0.0` defines queue service listening endpoint to accept requests from host machine.

`--queueKeepAliveTimeout 5000` queue service keep alive timeout

`--tablePort 9999` makes Azurite table service listen to port 9999, while `-p 9999:9999` redirects requests from host machine's port 9999 to docker instance.

`--tableHost 0.0.0.0` defines table service listening endpoint to accept requests from host machine.

`--tableKeepAliveTimeout 5000` table service keep alive timeout

`--loose` enables loose mode which ignore unsupported headers and parameters.

`--skipApiVersionCheck` skip the request API version check.
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@
"azurite.blobKeepAliveTimeout": {
"type": "number",
"default": 5,
"description": "Blob service keep alive timeout, by default 5"
"description": "Blob service keep alive timeout, by default 5000"
},
"azurite.queueHost": {
"type": "string",
Expand All @@ -237,7 +237,7 @@
"azurite.queueKeepAliveTimeout": {
"type": "number",
"default": 5,
"description": "Queue service keep alive timeout, by default 5"
"description": "Queue service keep alive timeout, by default 5000"
},
"azurite.tableHost": {
"type": "string",
Expand All @@ -252,7 +252,7 @@
"azurite.tableKeepAliveTimeout": {
"type": "number",
"default": 5,
"description": "Table service keep alive timeout, by default 5"
"description": "Table service keep alive timeout, by default 5000"
},
"azurite.skipApiVersionCheck": {
"type": "boolean",
Expand Down

0 comments on commit c66120e

Please sign in to comment.