Use github event in github action
[poolifier.git] / src / worker / abstract-worker.ts
index c3c5d1bda82894265565f83bf662cc1618013edd..54358ee64b58adfb1a4f9275f53a04185ea878e8 100644 (file)
@@ -104,9 +104,6 @@ export abstract class AbstractWorker<
     this.opts.killBehavior = opts.killBehavior ?? DEFAULT_KILL_BEHAVIOR
     this.opts.maxInactiveTime =
       opts.maxInactiveTime ?? DEFAULT_MAX_INACTIVE_TIME
-    /**
-     * Whether the worker is working asynchronously or not.
-     */
     this.opts.async = !!opts.async
   }