123456789101112131415161718 |
- %%-*- mode: erlang -*-
- {application, epgsql_pool,
- [
- {description, "Connection pool for PostgreSQL"},
- {vsn, "1.0.0"},
- {registered, []},
- {applications, [epgsql, pooler]},
- {env, [
- {connection_timeout, 10000},
- {query_timeout, 10000},
- {pooler_get_worker_timeout, 10000},
- {pooler_max_queue, 1000},
- {max_reconnect_timeout, 5000},
- {min_reconnect_timeout, 100},
- {keep_alive_timeout, 60000}
- ]}
- ]}.
|