Skip to content

Commit 830214f

Browse files
ali-mirMongoDB Bot
authored andcommitted
SERVER-97551 Extend timeout in initial_sync_unsupported_auth_schema.js assert.soon statements (#29676) (#31399)
GitOrigin-RevId: 4e758780326b73d0cb97f7dd7fc15150e98502b6
1 parent e54b26a commit 830214f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

jstests/replsets/initial_sync_unsupported_auth_schema.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ function testInitialSyncAbortsWithUnsupportedAuthSchema(schema) {
3333
return true;
3434
}
3535
return false;
36-
}, "Node did not terminate due to unsupported auth schema during initial sync", 60 * 1000);
36+
}, "Node did not terminate due to unsupported auth schema during initial sync", 5 * 60 * 1000);
3737

3838
rst.stop(initSyncNode, undefined, {allowedExitCode: MongoRunner.EXIT_ABRUPT});
3939

@@ -81,7 +81,7 @@ function testInitialSyncAbortsWithExistingUserAndNoAuthSchema() {
8181
return true;
8282
}
8383
return false;
84-
}, "Node did not terminate due to unsupported auth schema during initial sync", 60 * 1000);
84+
}, "Node did not terminate due to unsupported auth schema during initial sync", 5 * 60 * 1000);
8585

8686
rst.stop(initSyncNode, undefined, {allowedExitCode: MongoRunner.EXIT_ABRUPT});
8787

0 commit comments

Comments
 (0)