diff options
author | Matthew Wild <mwild1@gmail.com> | 2018-03-25 12:45:24 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2018-03-25 12:45:24 +0100 |
commit | e50e0c22a4816071677db43cd7e51826ace54170 (patch) | |
tree | f5273822144e0342c0a70a68183fac0dddbb9473 | |
parent | 3a59dfeb6a33aefe16c65ab012e51ef356a5b8ec (diff) | |
download | prosody-e50e0c22a4816071677db43cd7e51826ace54170.tar.gz prosody-e50e0c22a4816071677db43cd7e51826ace54170.zip |
storagemanager: Default storage_async_check to false for a while
-rw-r--r-- | core/storagemanager.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/storagemanager.lua b/core/storagemanager.lua index 49191666..e5f48752 100644 --- a/core/storagemanager.lua +++ b/core/storagemanager.lua @@ -32,7 +32,7 @@ local null_storage_driver = setmetatable( } ); -local async_check = config.get("*", "storage_async_check") ~= false; +local async_check = config.get("*", "storage_async_check") == true; local stores_available = multitable.new(); |