forked from inaka/sumo_db_pgsql
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtest.config
More file actions
30 lines (29 loc) · 688 Bytes
/
Copy pathtest.config
File metadata and controls
30 lines (29 loc) · 688 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[
{sumo_db, [
{wpool_opts, [{overrun_warning, 100}]},
{log_queries, true},
{query_timeout, 30000},
{storage_backends, [
{sumo_test_backend_pgsql, sumo_backend_pgsql, [
{host, "127.0.0.1"},
{port, 5432},
{database, "sumo_test"},
{username, "postgres"},
{password, "postgres"}
]}
]},
{stores, [
{sumo_test_pgsql, sumo_store_pgsql, [
{storage_backend, sumo_test_backend_pgsql},
{workers, 10}
]}
]},
{docs, [
{people, sumo_test_pgsql, #{module => sumo_test_people_pgsql}}
]},
{events, [
{people, sumo_test_people_events_manager}
]}
]},
{sasl, [{sasl_error_logger, false}]}
].