diff options
author | aditsachde <23707194+aditsachde@users.noreply.github.com> | 2020-02-11 08:53:54 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-11 13:53:54 +0000 |
commit | d45f869cdd35b07ed9b44445732b27935ca1910d (patch) | |
tree | df654a47cb23571792e2ee556100d443c9e4f46c | |
parent | 880545bfa8248185c7664d2adbead7f91b1b87d5 (diff) |
Fix AppService bind addrs in test (#805)
Co-authored-by: Neil Alexander <neilalexander@users.noreply.github.com>
-rw-r--r-- | common/test/config.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/test/config.go b/common/test/config.go index 69355561..0fed252a 100644 --- a/common/test/config.go +++ b/common/test/config.go @@ -111,6 +111,7 @@ func MakeConfig(configDir, kafkaURI, database, host string, startPort int) (*con // Bind to the same address as the listen address // All microservices are run on the same host in testing cfg.Bind.ClientAPI = cfg.Listen.ClientAPI + cfg.Bind.AppServiceAPI = cfg.Listen.AppServiceAPI cfg.Bind.FederationAPI = cfg.Listen.FederationAPI cfg.Bind.MediaAPI = cfg.Listen.MediaAPI cfg.Bind.RoomServer = cfg.Listen.RoomServer |