Add new configuration variable to BUILD.bazel

This commit is contained in:
Loïc Hoguin 2021-04-06 12:23:53 +02:00
parent 9063bcbd5c
commit 3cab7d59a6
No known key found for this signature in database
GPG Key ID: C69E26E3A9DF618F
1 changed files with 6 additions and 1 deletions

View File

@ -127,7 +127,12 @@ _APP_ENV = """[
%% interval at which connection/channel tracking executes post operations
{tracking_execution_timeout, 15000},
{stream_messages_soft_limit, 256},
{track_auth_attempt_source, false}
{track_auth_attempt_source, false},
%% Number of entries per index segment.
%% This value can only be changed safely
%% on an empty node. Default calculated
%% as trunc(math:pow(2,?REL_SEQ_BITS))).
{queue_index_segment_entry_count, 16384}
]
"""