Add missing flag 'testOnReturn'

This commit is contained in:
Malthe Borch
2019-02-08 11:45:36 +01:00
parent bb560329b9
commit 099ad3f2cb
2 changed files with 2 additions and 0 deletions
+1
View File
@@ -29,6 +29,7 @@ const opts = {
min: 2,
maxWaitingClients: 2,
testOnBorrow: true,
testOnReturn: true,
acquireTimeoutMillis: 100,
fifo: true,
priorityRange: 5,
+1
View File
@@ -38,6 +38,7 @@ export interface Options {
min?: number;
maxWaitingClients?: number;
testOnBorrow?: boolean;
testOnReturn?: boolean;
acquireTimeoutMillis?: number;
fifo?: boolean;
priorityRange?: number;