Skip to content

Commit

Permalink
Adding OE timeout setting (#17548)
Browse files Browse the repository at this point in the history
  • Loading branch information
aasimkhan30 authored Feb 21, 2023
1 parent bcdec95 commit 7f1423e
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
3 changes: 3 additions & 0 deletions localization/xliff/enu/localizedPackage.json.enu.xlf
Original file line number Diff line number Diff line change
Expand Up @@ -401,6 +401,9 @@
<trans-unit id="mssql.objectExplorer.disableGroupBySchema">
<source xml:lang="en">Disable Group By Schema</source>
</trans-unit>
<trans-unit id="mssql.objectExplorer.expandTimeout">
<source xml:lang="en">The timeout in seconds for expanding a node in Object Explorer. The default value is 45 seconds.</source>
</trans-unit>
</body>
</file>
</xliff>
6 changes: 6 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -1164,6 +1164,12 @@
"type": "boolean",
"description": "%mssql.objectExplorer.groupBySchema%",
"default": false
},
"mssql.objectExplorer.expandTimeout": {
"type": "number",
"default": 45,
"minimum": 1,
"description": "%mssql.objectExplorer.expandTimeout%"
}
}
}
Expand Down
3 changes: 2 additions & 1 deletion package.nls.json
Original file line number Diff line number Diff line change
Expand Up @@ -131,5 +131,6 @@
"mssql.deviceCode.description":"Allows users to sign in to input-constrained devices.",
"mssql.objectExplorer.groupBySchema":"When enabled, the database objects in Object Explorer will be categorized by schema.",
"mssql.objectExplorer.enableGroupBySchema":"Enable Group By Schema",
"mssql.objectExplorer.disableGroupBySchema":"Disable Group By Schema"
"mssql.objectExplorer.disableGroupBySchema":"Disable Group By Schema",
"mssql.objectExplorer.expandTimeout":"The timeout in seconds for expanding a node in Object Explorer. The default value is 45 seconds."
}

0 comments on commit 7f1423e

Please sign in to comment.