refactor: null -> undefined where appropriate
[poolifier.git] / examples / typescript / http-server-pool / fastify-cluster / src / main.ts
index 88167a3c091cdd8ee225b53d160e0ac5983a3d3b..eb7720350077b69d28918356389022b9d3c874ce 100644 (file)
@@ -22,7 +22,7 @@ const pool = new FixedClusterPool<WorkerData, WorkerResponse>(
               `Fastify is listening in cluster worker on port ${response.port}`
             )
           }
-          return null
+          return undefined
         })
         .catch(error => {
           console.error('Fastify failed to start in cluster worker:', error)