Commit 6c4a5238 by willmcgugan

Added thread syncronize to mountfs

parent b6c14e33
...@@ -21,8 +21,8 @@ class MountFS(FS): ...@@ -21,8 +21,8 @@ class MountFS(FS):
return {} return {}
self.info_callable = info_callable or no_info_callable self.info_callable = info_callable or no_info_callable
def __init__(self): def __init__(self, thread_syncronize=True):
FS.__init__(self, thread_syncronize=True) FS.__init__(self, thread_syncronize=thread_syncronize)
self.mount_tree = ObjectTree() self.mount_tree = ObjectTree()
def __str__(self): def __str__(self):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment