@@ -84,7 +84,7 @@ interface ClusterTestOptions<
84
84
S extends RedisScripts ,
85
85
RESP extends RespVersions ,
86
86
TYPE_MAPPING extends TypeMapping
87
- // POLICIES extends CommandPolicies
87
+ // POLICIES extends CommandPolicies
88
88
> extends CommonTestOptions {
89
89
clusterConfiguration ?: Partial < RedisClusterOptions < M , F , S , RESP , TYPE_MAPPING /*, POLICIES*/ > > ;
90
90
numberOfMasters ?: number ;
@@ -97,7 +97,7 @@ interface AllTestOptions<
97
97
S extends RedisScripts ,
98
98
RESP extends RespVersions ,
99
99
TYPE_MAPPING extends TypeMapping
100
- // POLICIES extends CommandPolicies
100
+ // POLICIES extends CommandPolicies
101
101
> {
102
102
client : ClientTestOptions < M , F , S , RESP , TYPE_MAPPING > ;
103
103
cluster : ClusterTestOptions < M , F , S , RESP , TYPE_MAPPING /*, POLICIES*/ > ;
@@ -335,7 +335,17 @@ export default class TestUtils {
335
335
await fn ( pool ) ;
336
336
} finally {
337
337
await pool . flushAll ( ) ;
338
- pool . destroy ( ) ;
338
+ try {
339
+ pool . destroy ( ) ;
340
+ } catch ( destroyError ) {
341
+ if ( destroyError instanceof Error &&
342
+ destroyError . message === 'The client is closed' ) {
343
+ //TODO figure out where this race condition between destroy and client close is happening
344
+ console . warn ( 'Ignoring "client is closed" error during pool destruction' ) ;
345
+ } else {
346
+ throw destroyError ;
347
+ }
348
+ }
339
349
}
340
350
} ) ;
341
351
}
@@ -346,7 +356,7 @@ export default class TestUtils {
346
356
S extends RedisScripts ,
347
357
RESP extends RespVersions ,
348
358
TYPE_MAPPING extends TypeMapping
349
- // POLICIES extends CommandPolicies
359
+ // POLICIES extends CommandPolicies
350
360
> ( cluster : RedisClusterType < M , F , S , RESP , TYPE_MAPPING /*, POLICIES*/ > ) : Promise < unknown > {
351
361
return Promise . all (
352
362
cluster . masters . map ( async master => {
@@ -363,7 +373,7 @@ export default class TestUtils {
363
373
S extends RedisScripts = { } ,
364
374
RESP extends RespVersions = 2 ,
365
375
TYPE_MAPPING extends TypeMapping = { }
366
- // POLICIES extends CommandPolicies = {}
376
+ // POLICIES extends CommandPolicies = {}
367
377
> (
368
378
title : string ,
369
379
fn : ( cluster : RedisClusterType < M , F , S , RESP , TYPE_MAPPING /*, POLICIES*/ > ) => unknown ,
@@ -387,7 +397,7 @@ export default class TestUtils {
387
397
388
398
it ( title , async function ( ) {
389
399
if ( ! dockersPromise ) return this . skip ( ) ;
390
-
400
+
391
401
const dockers = await dockersPromise ,
392
402
cluster = createCluster ( {
393
403
rootNodes : dockers . map ( ( { port } ) => ( {
@@ -417,7 +427,7 @@ export default class TestUtils {
417
427
S extends RedisScripts = { } ,
418
428
RESP extends RespVersions = 2 ,
419
429
TYPE_MAPPING extends TypeMapping = { }
420
- // POLICIES extends CommandPolicies = {}
430
+ // POLICIES extends CommandPolicies = {}
421
431
> (
422
432
title : string ,
423
433
fn : ( client : RedisClientType < M , F , S , RESP , TYPE_MAPPING > | RedisClusterType < M , F , S , RESP , TYPE_MAPPING /*, POLICIES*/ > ) => unknown ,
0 commit comments