build: reenable eslint type checking
[poolifier.git] / examples / typescript / http-server-pool / fastify-hybrid / src / main.ts
index 4622324c02c97f1e141abccb7c7b464ed113508d..74ed1f70158ce7876e717ab844cd16e8e7a3b58f 100644 (file)
@@ -40,7 +40,8 @@ const pool = new FixedClusterPool<ClusterWorkerData, ClusterWorkerResponse>(
         .then(response => {
           if (response.status) {
             console.info(
-              `Fastify is listening in cluster worker on port ${response.port}`
+              // eslint-disable-next-line @typescript-eslint/restrict-template-expressions
+              `Fastify is listening in cluster worker on port ${response.port?.toString()}`
             )
           }
           return undefined