浏览代码

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()