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-key-server/main.go | |
parent | 2bd12f635cef281ab0d497c9e1bafe92247d88d5 (diff) |
General cleanup when making components (#1098)
* Remove ParseMonolith/LoadMonolith
* cleanup which components need to be made
Diffstat (limited to 'cmd/dendrite-key-server/main.go')
-rw-r--r-- | cmd/dendrite-key-server/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/dendrite-key-server/main.go b/cmd/dendrite-key-server/main.go index 17fee2c6..a8accbcb 100644 --- a/cmd/dendrite-key-server/main.go +++ b/cmd/dendrite-key-server/main.go @@ -20,7 +20,7 @@ import ( ) func main() { - cfg := basecomponent.ParseFlags() + cfg := basecomponent.ParseFlags(false) base := basecomponent.NewBaseDendrite(cfg, "KeyServer", true) defer base.Close() // nolint: errcheck |