Comparison

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
comparison
equal deleted inserted replaced
8690:0f6623712239 8691:564e2c63e0d4
30 return null_storage_method; 30 return null_storage_method;
31 end 31 end
32 } 32 }
33 ); 33 );
34 34
35 local async_check = config.get("*", "storage_async_check") ~= false; 35 local async_check = config.get("*", "storage_async_check") == true;
36 36
37 local stores_available = multitable.new(); 37 local stores_available = multitable.new();
38 38
39 local function check_async_wrapper(event) 39 local function check_async_wrapper(event)
40 local store = event.store; 40 local store = event.store;