Scheduling the same function to run at the same time hasn't been working for me. It works fine if I schedule two different functions at the same time, but it fails with the same function (looks like it's only running the latest declared statement instead of both?).
Scheduling the same function to run at the same time hasn't been working for me. It works fine if I schedule two different functions at the same time, but it fails with the same function (looks like it's only running the latest declared statement instead of both?).
e.g.
^ I see only one instance of
someFunc
running with param2
-- the latest declared is run.Any ideas what may be going wrong here? I've also tried running them in different goroutines, but it still fails.