Fork me on GitHub
#mount
<
2016-11-24
>
rkaippully15:11:30

Is there a recommended way of using mount in multithreaded scenarios? For e.g. let us say I hold some config data in a state, and I want to run a number of tests in parallel each with different config. Is the state thread local by default?

dm315:11:01

nope, the state is a normal Var

dm315:11:03

I usually just redef stuff in my tests

dm315:11:17

but then I'm not very civilized anyway

rkaippully15:11:25

Yurt looks interesting. I’ll take a look. Thanks