Hey

Results 14 issues of Hey

Hi @fieldryand I have found DAG validation bug. ```mermaid graph LR; c-->a; a-->b; b-->a; ``` ![image](https://github.com/fieldryand/goflow/assets/54737035/4b420763-2331-4955-a79d-aa1de0ba5d49)

Fixes #913

bug
pr-bugfix
ready-to-merge

**Describe the bug** timer.After() creates a new timer object each time it is called. Which can cause a memory leak in the for loop. https://github.com/hibiken/asynq/blob/d04888e74845fc7434c6a50755e62ec6ffda5911/subscriber.go#L61-L74 https://github.com/hibiken/asynq/blob/d04888e74845fc7434c6a50755e62ec6ffda5911/syncer.go#L60-L85 **To Reproduce** **Expected behavior**...

bug