Skip to content

Commit d79f407

Browse files
committed
Merge remote-tracking branch 'origin/v4.2' into v5.0
# Conflicts: # package-lock.json # package.json
2 parents 30a0b62 + 0893f19 commit d79f407

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

src/ServerWide/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export interface DatabaseRecord {
3535
encrypted?: boolean;
3636
etagForBackup?: number;
3737
deletionInProgress?: { [key: string]: DeletionInProgressStatus };
38-
databaseStatus?: DatabaseStateStatus;
38+
databaseState?: DatabaseStateStatus;
3939
topology?: DatabaseTopology;
4040
conflictSolverConfig?: ConflictSolver;
4141
documentsCompression?: DocumentsCompressionConfiguration;

test/Ported/Subscriptions/SecuredSubscriptionsBasicTest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ describe("SecuredSubscriptionsBasicTest", function () {
1111

1212
this.retries(3);
1313

14-
const _reasonableWaitTime = 5 * 1000;
14+
const _reasonableWaitTime = 15 * 1000;
1515
this.timeout(5 * _reasonableWaitTime);
1616

1717
let store: IDocumentStore;

test/ServerWide/GetDatabaseRecordTest.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ describe("GetDatabaseRecordTest", function () {
2525
new GetDatabaseRecordOperation(store.database));
2626

2727
assert.ok(databaseRecord);
28+
assert.strictEqual(databaseRecord.databaseState, "Normal");
2829
assert.strictEqual(databaseRecord.databaseName, store.database);
2930
});
3031

0 commit comments

Comments
 (0)