# HG changeset patch
# User Kim Alvefur <zash@zash.se>
# Date 1689674011 -7200
# Node ID b88b3e41455024d8a71bcfc4b15ae7a0c7f1d536
# Parent  cb6a17eaa0e6b0394931ede23af337b5b64c2433
mod_storage_sql: Use integer config option for cache size

Missed this one, was probably only looking for get_option_number

diff -r cb6a17eaa0e6 -r b88b3e414550 plugins/mod_storage_sql.lua
--- a/plugins/mod_storage_sql.lua	Tue Jul 18 11:53:12 2023 +0200
+++ b/plugins/mod_storage_sql.lua	Tue Jul 18 11:53:31 2023 +0200
@@ -153,7 +153,7 @@
 --- Archive store API
 
 local archive_item_limit = module:get_option_integer("storage_archive_item_limit", nil, 0);
-local archive_item_count_cache = cache.new(module:get_option("storage_archive_item_limit_cache_size", 1000));
+local archive_item_count_cache = cache.new(module:get_option_integer("storage_archive_item_limit_cache_size", 1000, 1));
 
 local item_count_cache_hit = module:measure("item_count_cache_hit", "rate");
 local item_count_cache_miss = module:measure("item_count_cache_miss", "rate")