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 c675992 commit 4ce5cf0Copy full SHA for 4ce5cf0
test/integration/server-discovery-and-monitoring/server_discovery_and_monitoring.spec.test.js
@@ -48,7 +48,11 @@ const failpointTests = [
48
'Reset server and pool after network timeout error during authentication',
49
'Reset server and pool after shutdown error during authentication'
50
];
51
-const skippedTests = isAuthEnabled ? failpointTests : [];
+
52
+// TODO: NODE-3135 - make CMAP SDAM-aware and ensure PoolClearError is retryable
53
+const cmapSkippedTests = ['PoolClearedError does not mark server unknown'];
54
55
+const skippedTests = isAuthEnabled ? failpointTests.concat(cmapSkippedTests) : cmapSkippedTests;
56
57
function sdamDisabledTestFilter(test) {
58
const { description } = test;
0 commit comments