This fixes a leak of a channel sender, by removing a forget() call. We shouldn't leak this sender because the dispatcher task is supposed to run until all senders are dropped. Furthermore, some of our tests amplify this leak by creating and tearing down many queues, which causes file descriptor exhaustion for me locally. Closes #3405.
This fixes a leak of a channel sender, by removing a
forget()
call. We shouldn't leak this sender because the dispatcher task is supposed to run until all senders are dropped. Furthermore, some of our tests amplify this leak by creating and tearing down many queues, which causes file descriptor exhaustion for me locally. Closes #3405.