diff options
author | Kegsay <kegan@matrix.org> | 2020-06-30 10:37:21 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-30 10:37:21 +0100 |
commit | ca5bbffd8d987b220c8f8eb888a2fc9b9cef104c (patch) | |
tree | 421bdd5967ef492d71559d0cc819012a74bf5b80 /dendrite-config.yaml | |
parent | 3a18b7fc7814755868a9847eb99fb465c9317017 (diff) |
Add a new component: currentstateserver (#1171)
* Add a new component: currentstateserver
- Add a skeleton for it, with databases and a single query method.
- Add integration tests for it.
- Add listen/address fields in the config (breaking as this will force people to specify this to validate)
Not currently hooked up to anything yet.
* Unbreak config tests
* Add current_state to sample config
* comments
Diffstat (limited to 'dendrite-config.yaml')
-rw-r--r-- | dendrite-config.yaml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/dendrite-config.yaml b/dendrite-config.yaml index 73bfec24..70c8f795 100644 --- a/dendrite-config.yaml +++ b/dendrite-config.yaml @@ -121,6 +121,7 @@ database: federation_sender: "postgres://dendrite:itsasecret@localhost/dendrite_federationsender?sslmode=disable" appservice: "postgres://dendrite:itsasecret@localhost/dendrite_appservice?sslmode=disable" public_rooms_api: "postgres://dendrite:itsasecret@localhost/dendrite_publicroomsapi?sslmode=disable" + current_state: "postgres://dendrite:itsasecret@localhost/dendrite_currentstate?sslmode=disable" max_open_conns: 100 max_idle_conns: 2 conn_max_lifetime: -1 @@ -143,6 +144,7 @@ listen: key_server: "localhost:7779" server_key_api: "localhost:7780" user_api: "localhost:7781" + current_state_server: "localhost:7782" # The configuration for tracing the dendrite components. tracing: |