This is an automated email from the ASF dual-hosted git repository.
zhangjintao pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/apisix-ingress-controller.git
The following commit(s) were added to refs/heads/master by this push:
new 5c9cdbe fix: remove the step of deleting httpbinsvc (#677)
5c9cdbe is described below
commit 5c9cdbe7fc2c28f3023d635dbbd9bc833388a2bf
Author: kv <[email protected]>
AuthorDate: Tue Sep 14 21:35:27 2021 +0800
fix: remove the step of deleting httpbinsvc (#677)
---
test/e2e/ingress/resourcepushing.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/test/e2e/ingress/resourcepushing.go
b/test/e2e/ingress/resourcepushing.go
index 5014ad9..5e2d489 100644
--- a/test/e2e/ingress/resourcepushing.go
+++ b/test/e2e/ingress/resourcepushing.go
@@ -216,7 +216,7 @@ spec:
s.NewAPISIXClient().GET("/ip").WithHeader("Host",
"httpbin.com").Expect().Status(http.StatusNotFound)
s.NewAPISIXClient().GET("/ip").WithHeader("Host",
"httpbin.com").WithHeader("X-Foo", "barbaz").Expect().Status(http.StatusOK)
// remove k8s service first
- assert.Nil(ginkgo.GinkgoT(), s.DeleteHTTPBINService())
+ // assert.Nil(ginkgo.GinkgoT(), s.DeleteHTTPBINService())
// remove
assert.Nil(ginkgo.GinkgoT(),
s.RemoveResourceByString(apisixRoute))
// TODO When ingress controller can feedback the lifecycle of
CRDs to the