Juno execution with workers processes?

I’m not sure what to make of this, but it’s being a bit problematic. Don’t know how much is a Juno thing or Julia thing.

If I create workers to execute work in parallel for an internal loop, I will occasionally find that my other code was running on one of the workers instead of on the main process. This has caused problems occasionally, as the worker process errors when it can’t load a package (because I wasn’t expecting the worker to need it); or because interrupting Julia execution on the main process doesn’t interrupt the worker processes, forcing me to kill the workers externally.

I was executing a code block with Ctrl+Enter, if that helps narrow it down.