From 81179a0595ab4a9979fc3e5e66fb89ecc95c3ee5 Mon Sep 17 00:00:00 2001 From: Mark Haines Date: Mon, 21 Aug 2017 16:23:59 +0100 Subject: [PATCH] Fix integration test proxy certificate arguments (#190) --- src/github.com/matrix-org/dendrite/common/test/server.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/github.com/matrix-org/dendrite/common/test/server.go b/src/github.com/matrix-org/dendrite/common/test/server.go index d990d410..8e1af204 100644 --- a/src/github.com/matrix-org/dendrite/common/test/server.go +++ b/src/github.com/matrix-org/dendrite/common/test/server.go @@ -94,6 +94,8 @@ func StartProxy(bindAddr string, cfg *config.Dendrite) (*exec.Cmd, chan error) { "--sync-api-server-url", "http://" + string(cfg.Listen.SyncAPI), "--client-api-server-url", "http://" + string(cfg.Listen.ClientAPI), "--media-api-server-url", "http://" + string(cfg.Listen.MediaAPI), + "--tls-cert", "server.crt", + "--tls-key", "server.key", } return CreateBackgroundCommand( filepath.Join(filepath.Dir(os.Args[0]), "client-api-proxy"),