Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions include/riakc.hrl
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
-define(PROTO_MAJOR, 1).
-define(PROTO_MINOR, 0).
-define(DEFAULT_PB_TIMEOUT, 60000).
-define(FIRST_RECONNECT_INTERVAL, 100).
-define(FIRST_RECONNECT_INTERVAL, 10).
-define(MAX_RECONNECT_INTERVAL, 30000).

-type client_option() :: queue_if_disconnected |
Expand All @@ -33,7 +33,8 @@
auto_reconnect |
{auto_reconnect, boolean()} |
keepalive |
{keepalive, boolean()}.
{keepalive, boolean()} |
{stats, non_neg_integer()}.
%% Options for starting or modifying the connection:
%% `queue_if_disconnected' when present or true will cause requests to
%% be queued while the connection is down. `auto_reconnect' when
Expand Down
Loading