Skip to content

Commit

Permalink
Fix error in e2e test proxy setting check
Browse files Browse the repository at this point in the history
  • Loading branch information
aledbf committed Nov 29, 2018
1 parent e192bba commit 430045d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/e2e/annotations/proxy.go
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ var _ = framework.IngressNginxDescribe("Annotations - Proxy", func() {
func(server string) bool {
return !strings.Contains(server, "proxy_connect_timeout 50ks;") &&
!strings.Contains(server, "proxy_send_timeout 20ks;") &&
!strings.Contains(server, "proxy_read_timeout 60s;")
!strings.Contains(server, "proxy_read_timeout 20ks;")
})
})

Expand Down

0 comments on commit 430045d

Please sign in to comment.