Skip to content

Commit b34c2f9

Browse files
committed
fixup: last one?
1 parent 6fb68a9 commit b34c2f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

testing/integration-testing-hooks.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ export class MongoRunnerSetup extends MongodSetup {
245245
(l: LogEntry) => {
246246
// "Aggregate command executor error", we get this a lot for things like
247247
// $collStats which internally tries to open collections that may or may not exist
248-
return l.id === 23799 && l.attr?.error?.codeName === 'NamespaceNotFound';
248+
return l.id === 23799 && ['NamespaceNotFound', 'ShardNotFound'].includes(l.attr?.error?.codeName);
249249
},
250250
(l: LogEntry) => {
251251
// "getMore command executor error" can happen under normal circumstances

0 commit comments

Comments
 (0)