diff options
author | Kegsay <kegan@matrix.org> | 2020-06-05 09:28:15 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-05 09:28:15 +0100 |
commit | 29a20d1da7a7f4a04d1e456d72e49424d45d5f4c (patch) | |
tree | 1869aaa85555b6c797e8b7990aec24c27ec5317b /cmd/dendrite-monolith-server | |
parent | 2bd12f635cef281ab0d497c9e1bafe92247d88d5 (diff) |
General cleanup when making components (#1098)
* Remove ParseMonolith/LoadMonolith
* cleanup which components need to be made
Diffstat (limited to 'cmd/dendrite-monolith-server')
-rw-r--r-- | cmd/dendrite-monolith-server/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/dendrite-monolith-server/main.go b/cmd/dendrite-monolith-server/main.go index 78919f2b..57e8f66f 100644 --- a/cmd/dendrite-monolith-server/main.go +++ b/cmd/dendrite-monolith-server/main.go @@ -49,7 +49,7 @@ var ( ) func main() { - cfg := basecomponent.ParseMonolithFlags() + cfg := basecomponent.ParseFlags(true) if *enableHTTPAPIs { // If the HTTP APIs are enabled then we need to update the Listen // statements in the configuration so that we know where to find |