From e28ebf1c620e1ef28bf52ed6af04fb2544d4fc74 Mon Sep 17 00:00:00 2001 From: Michael Date: Fri, 23 Feb 2018 10:52:03 +0100 Subject: [PATCH] Change port of traefik for error pages integration test --- integration/error_pages_test.go | 4 ++-- integration/fixtures/error_pages/error.toml | 2 +- integration/fixtures/error_pages/simple.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/integration/error_pages_test.go b/integration/error_pages_test.go index ac73047e3..d97facc8e 100644 --- a/integration/error_pages_test.go +++ b/integration/error_pages_test.go @@ -39,7 +39,7 @@ func (s *ErrorPagesSuite) TestSimpleConfiguration(c *check.C) { c.Assert(err, checker.IsNil) defer cmd.Process.Kill() - frontendReq, err := http.NewRequest(http.MethodGet, "http://127.0.0.1:80", nil) + frontendReq, err := http.NewRequest(http.MethodGet, "http://127.0.0.1:8080", nil) c.Assert(err, checker.IsNil) frontendReq.Host = "test.local" @@ -62,7 +62,7 @@ func (s *ErrorPagesSuite) TestErrorPage(c *check.C) { c.Assert(err, checker.IsNil) defer cmd.Process.Kill() - frontendReq, err := http.NewRequest(http.MethodGet, "http://127.0.0.1:80", nil) + frontendReq, err := http.NewRequest(http.MethodGet, "http://127.0.0.1:8080", nil) c.Assert(err, checker.IsNil) frontendReq.Host = "test.local" diff --git a/integration/fixtures/error_pages/error.toml b/integration/fixtures/error_pages/error.toml index 09f63986e..9eef45f1c 100644 --- a/integration/fixtures/error_pages/error.toml +++ b/integration/fixtures/error_pages/error.toml @@ -4,7 +4,7 @@ logLevel = "DEBUG" [entryPoints] [entryPoints.http] - address = ":80" + address = ":8080" [file] [backends] diff --git a/integration/fixtures/error_pages/simple.toml b/integration/fixtures/error_pages/simple.toml index 4f4e907fd..c67dc95b5 100644 --- a/integration/fixtures/error_pages/simple.toml +++ b/integration/fixtures/error_pages/simple.toml @@ -4,7 +4,7 @@ logLevel = "DEBUG" [entryPoints] [entryPoints.http] - address = ":80" + address = ":8080" [file] [backends]