Diff

core/storagemanager.lua @ 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
parent 8670:800c648827e3
child 8717:9ddd0fbbe53a
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();