Software /
code /
prosody
Changeset
8691:564e2c63e0d4
storagemanager: Default storage_async_check to false for a while
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Sun, 25 Mar 2018 12:45:24 +0100 |
parents | 8690:0f6623712239 |
children | 8692:a55574754e5f |
files | core/storagemanager.lua |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/core/storagemanager.lua Sat Mar 24 11:29:33 2018 +0000 +++ b/core/storagemanager.lua Sun Mar 25 12:45:24 2018 +0100 @@ -32,7 +32,7 @@ } ); -local async_check = config.get("*", "storage_async_check") ~= false; +local async_check = config.get("*", "storage_async_check") == true; local stores_available = multitable.new();