fix: fix formatting issue.
[poolifier.git] / examples / typescript / http-server-pool / fastify-cluster / src / main.ts
index 1dc88be27f0ca235775b0ce61014160c464bbe40..88167a3c091cdd8ee225b53d160e0ac5983a3d3b 100644 (file)
@@ -15,7 +15,7 @@ const pool = new FixedClusterPool<WorkerData, WorkerResponse>(
     onlineHandler: () => {
       pool
         .execute({ port: 8080 })
-        .then((response) => {
+        .then(response => {
           if (response.status) {
             console.info(
               // eslint-disable-next-line @typescript-eslint/restrict-template-expressions
@@ -24,7 +24,7 @@ const pool = new FixedClusterPool<WorkerData, WorkerResponse>(
           }
           return null
         })
-        .catch((error) => {
+        .catch(error => {
           console.error('Fastify failed to start in cluster worker:', error)
         })
     },