diff --git a/lib/db_connection.ex b/lib/db_connection.ex index 7b9d642..197b0cc 100644 --- a/lib/db_connection.ex +++ b/lib/db_connection.ex @@ -123,6 +123,7 @@ defmodule DBConnection do | {:backoff_max, non_neg_integer} | {:backoff_min, non_neg_integer} | {:backoff_type, :stop | :exp | :rand | :rand_exp} + | {:checkout_retries, non_neg_integer} | {:configure, (keyword -> keyword) | {module, atom, [any]} | nil} | {:idle_interval, non_neg_integer} | {:idle_limit, non_neg_integer} @@ -626,6 +627,7 @@ defmodule DBConnection do :backoff_max, :backoff_min, :backoff_type, + :checkout_retries, :configure, :idle_interval, :idle_limit, diff --git a/test/db_connection_test.exs b/test/db_connection_test.exs index e23cba4..395cdc1 100644 --- a/test/db_connection_test.exs +++ b/test/db_connection_test.exs @@ -41,6 +41,7 @@ defmodule DBConnectionTest do :backoff_max, :backoff_min, :backoff_type, + :checkout_retries, :configure, :idle_interval, :idle_limit,