Files
cosmos-explorer/src/Common/DatabaseUtility.ts
jawelton74 e0b773d920 Set shared throughput default to false for New Databases (#1981)
* Introduce common function for shared throughput default and set to
false.

* Add new file.

* Adjust E2E tests to not set throughput for database create.
2024-09-27 09:59:41 -07:00

4 lines
85 B
TypeScript

export function getNewDatabaseSharedThroughputDefault(): boolean {
return false;
}