|
@@ -1,7 +1,7 @@
|
|
import threading
|
|
import threading
|
|
|
|
|
|
'''
|
|
'''
|
|
-Thread-local bucket for switching configuration. Different environments
|
|
|
|
|
|
+Global bucket for switching configuration. Different environments
|
|
(e.g. webapp, test suite) put the appropriate value in it.
|
|
(e.g. webapp, test suite) put the appropriate value in it.
|
|
The most important values to be stored are app_conf (either from
|
|
The most important values to be stored are app_conf (either from
|
|
lakesuperior.config_parser.config or lakesuperior.config_parser.test_config)
|
|
lakesuperior.config_parser.config or lakesuperior.config_parser.test_config)
|
|
@@ -17,8 +17,8 @@ e.g.:
|
|
|
|
|
|
This is automated in non-test environments by importing
|
|
This is automated in non-test environments by importing
|
|
`lakesuperior.env_setup`.
|
|
`lakesuperior.env_setup`.
|
|
-
|
|
|
|
-Context variables would be ideal: https://www.python.org/dev/peps/pep-0567/
|
|
|
|
-However they are only available in Python 3.7. Better keep an eye on that.
|
|
|
|
'''
|
|
'''
|
|
-env = threading.local()
|
|
|
|
|
|
+class Env:
|
|
|
|
+ pass
|
|
|
|
+
|
|
|
|
+env = Env()
|