X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=examples%2Ftypescript%2Fhttp-client-pool%2Fsrc%2Fpool.ts;h=6988372eb1e4e07683fd129f8a2ea2b9ea0d40e2;hb=39c93c16d109194824a53f2b9d8167353d13515c;hp=f1306adfdbf06b05cf3830c0e229e97c616a2a0b;hpb=fac9ce963c96879918d8855c7bbed637dfcd54ff;p=poolifier.git diff --git a/examples/typescript/http-client-pool/src/pool.ts b/examples/typescript/http-client-pool/src/pool.ts index f1306adf..6988372e 100644 --- a/examples/typescript/http-client-pool/src/pool.ts +++ b/examples/typescript/http-client-pool/src/pool.ts @@ -1,7 +1,9 @@ -import { fileURLToPath } from 'node:url' import { dirname, extname, join } from 'node:path' -import { DynamicThreadPool, availableParallelism } from 'poolifier' -import { type WorkerData, type WorkerResponse } from './types.js' +import { fileURLToPath } from 'node:url' + +import { availableParallelism, DynamicThreadPool } from 'poolifier' + +import type { WorkerData, WorkerResponse } from './types.js' const workerFile = join( dirname(fileURLToPath(import.meta.url)), @@ -9,7 +11,7 @@ const workerFile = join( ) export const httpClientPool = new DynamicThreadPool( - 1, + 0, availableParallelism(), workerFile, { @@ -18,7 +20,7 @@ export const httpClientPool = new DynamicThreadPool( concurrency: 8 }, errorHandler: (e: Error) => { - console.error(e) + console.error('Thread worker error:', e) } } )