This is an automated email from the ASF dual-hosted git repository. vatamane pushed a commit to branch fix-reshard-config-typo in repository https://gitbox.apache.org/repos/asf/couchdb.git
commit be0481889c9fd484aba92a6fe87e394200d5241b Author: Nick Vatamaniuc <[email protected]> AuthorDate: Wed May 28 13:44:33 2025 -0400 Fix config key typo in mem3_reshard_dbdoc Thanks to Robert Newson for finding the error --- src/mem3/src/mem3_reshard_dbdoc.erl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mem3/src/mem3_reshard_dbdoc.erl b/src/mem3/src/mem3_reshard_dbdoc.erl index ffed94a8f..cb5bf3aee 100644 --- a/src/mem3/src/mem3_reshard_dbdoc.erl +++ b/src/mem3/src/mem3_reshard_dbdoc.erl @@ -210,7 +210,7 @@ range_key(#shard{range = [B, E]}) -> list_to_binary([BHex, "-", EHex]). shard_update_timeout_msec() -> - config:get_integer("reshard", "shard_upate_timeout_msec", 300000). + config:get_integer("reshard", "shard_update_timeout_msec", 300000). wait_source_removed(#shard{name = Name} = Source, SleepSec, UntilSec) -> case check_source_removed(Source) of
