Преглед изворни кода

Experimental use of threading.local variable for env.

Stefano Cossu пре 7 година
родитељ
комит
cad81fa9f4
1 измењених фајлова са 5 додато и 2 уклоњено
  1. 5 2
      lakesuperior/env.py

+ 5 - 2
lakesuperior/env.py

@@ -21,5 +21,8 @@ This is automated in non-test environments by importing
 class Env:
     pass
 
-env = Env()
-#env = threading.local()
+# NOTE: this can lead to race conditions in multi-thread operations competing
+# to set a timestamp.
+#env = Env()
+# NOTE: This should be thread-safe but is experimental.
+env = threading.local()