From 8524369e92206b409672473e64ffc6d822e98505 Mon Sep 17 00:00:00 2001 From: Mark Haines Date: Mon, 21 Aug 2017 16:02:34 +0100 Subject: [PATCH] Fix integration test proxy certificate arguments --- 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 d990d4105..8e1af2041 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"),