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
2 parents c66120e + 4d59c30 commit 5a147d5
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@
},
"azurite.blobKeepAliveTimeout": {
"type": "number",
"default": 5,
"default": 5000,
"description": "Blob service keep alive timeout, by default 5000"
},
"azurite.queueHost": {
Expand All @@ -236,7 +236,7 @@
},
"azurite.queueKeepAliveTimeout": {
"type": "number",
"default": 5,
"default": 5000,
"description": "Queue service keep alive timeout, by default 5000"
},
"azurite.tableHost": {
Expand All @@ -251,7 +251,7 @@
},
"azurite.tableKeepAliveTimeout": {
"type": "number",
"default": 5,
"default": 5000,
"description": "Table service keep alive timeout, by default 5000"
},
"azurite.skipApiVersionCheck": {
Expand Down
2 changes: 1 addition & 1 deletion src/blob/utils/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export const EMULATOR_ACCOUNT_KEY = Buffer.from(
export const EMULATOR_ACCOUNT_SKUNAME = Models.SkuName.StandardRAGRS;
export const EMULATOR_ACCOUNT_KIND = Models.AccountKind.StorageV2;
export const EMULATOR_ACCOUNT_ISHIERARCHICALNAMESPACEENABLED = false;
export const DEFAULT_BLOB_KEEP_ALIVE_TIMEOUT = 5;
export const DEFAULT_BLOB_KEEP_ALIVE_TIMEOUT = 5000;


export const HeaderConstants = {
Expand Down
2 changes: 1 addition & 1 deletion src/queue/utils/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export const MESSAGETTL_MIN = 1;
export const DEFAULT_UPDATE_VISIBILITYTIMEOUT = 30; // 30s as default.
export const UPDATE_VISIBILITYTIMEOUT_MIN = 0;
export const UPDATE_VISIBILITYTIMEOUT_MAX = 604800;
export const DEFAULT_QUEUE_KEEP_ALIVE_TIMEOUT = 5;
export const DEFAULT_QUEUE_KEEP_ALIVE_TIMEOUT = 5000;

export const EMPTY_EXTENT_CHUNK = { id: "", offset: 0, count: 0 };

Expand Down
2 changes: 1 addition & 1 deletion src/table/utils/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export const DEFAULT_TABLE_LOKI_DB_PATH = "__azurite_db_table__.json";

export const DEFAULT_TABLE_SERVER_HOST_NAME = "127.0.0.1"; // Change to 0.0.0.0 when needs external access
export const DEFAULT_TABLE_LISTENING_PORT = 10002;
export const DEFAULT_TABLE_KEEP_ALIVE_TIMEOUT = 5;
export const DEFAULT_TABLE_KEEP_ALIVE_TIMEOUT = 5000;
export const DEFAULT_ENABLE_ACCESS_LOG = true;
export const DEFAULT_ENABLE_DEBUG_LOG = true;
export const DEFAULT_TABLE_PERSISTENCE_PATH = "__tablestorage__";
Expand Down

0 comments on commit 5a147d5

Please sign in to comment.