mount

rkaippully 2016-11-24T15:21:30.001220Z

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?

dm3 2016-11-24T15:23:01.001221Z

nope, the state is a normal Var

arnout 2016-11-24T15:23:52.001222Z

Maybe https://github.com/tolitius/yurt can help you, @rkaippully

dm3 2016-11-24T15:25:03.001224Z

I usually just redef stuff in my tests

dm3 2016-11-24T15:25:17.001225Z

but then I'm not very civilized anyway

rkaippully 2016-11-24T15:27:25.001226Z

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