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 e2ffe13 commit cf58b17Copy full SHA for cf58b17
packages/compass-e2e-tests/helpers/test-runner-context.ts
@@ -336,9 +336,10 @@ export function isEndOfLifeConnection(connectionName: string) {
336
const connectionIndex = DEFAULT_CONNECTION_NAMES.indexOf(connectionName);
337
const serverInfo = DEFAULT_CONNECTIONS_SERVER_INFO[connectionIndex];
338
if (!serverInfo) {
339
- throw new Error(
+ debug(
340
`Unable to find server info for connection named '${connectionName}'`
341
);
342
+ return false;
343
}
344
return isEndOfLifeVersion(serverInfo.version);
345
0 commit comments