We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6fb68a9 commit b34c2f9Copy full SHA for b34c2f9
testing/integration-testing-hooks.ts
@@ -245,7 +245,7 @@ export class MongoRunnerSetup extends MongodSetup {
245
(l: LogEntry) => {
246
// "Aggregate command executor error", we get this a lot for things like
247
// $collStats which internally tries to open collections that may or may not exist
248
- return l.id === 23799 && l.attr?.error?.codeName === 'NamespaceNotFound';
+ return l.id === 23799 && ['NamespaceNotFound', 'ShardNotFound'].includes(l.attr?.error?.codeName);
249
},
250
251
// "getMore command executor error" can happen under normal circumstances
0 commit comments