rabbitmq-server/deps/rabbitmq_peer_discovery_common/include/rabbit_peer_discovery.hrl

36 lines
1.6 KiB
Erlang

%% This Source Code Form is subject to the terms of the Mozilla Public
%% License, v. 2.0. If a copy of the MPL was not distributed with this
%% file, You can obtain one at https://mozilla.org/MPL/2.0/.
%%
%% Copyright (c) 2007-2025 Broadcom. All Rights Reserved. The term “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. All rights reserved.
%%
-include_lib("rabbit_common/include/logging.hrl").
% rabbitmq/rabbitmq-peer-discovery-aws#25
% Note: this timeout must not be greater than the default
% gen_server:call timeout of 5000ms. This `timeout`,
% when set, is used as the connect and then request timeout
% by `httpc`
-define(DEFAULT_HTTP_TIMEOUT, 2250).
-type peer_discovery_config_value() :: port()
| atom()
| integer()
| string()
| proplists:proplist()
| map()
| list()
| undefined.
-record(peer_discovery_config_entry_meta,
{env_variable :: string(),
default_value :: peer_discovery_config_value(),
type :: atom()}).
-type(peer_discovery_config_entry_meta() :: #peer_discovery_config_entry_meta{
type :: atom(),
env_variable :: string(),
default_value :: peer_discovery_config_value()
}).