This is an automated email from the ASF dual-hosted git repository.
AlinsRan pushed a commit to branch feat/webhook-adc-validation
in repository https://gitbox.apache.org/repos/asf/apisix-ingress-controller.git
The following commit(s) were added to refs/heads/feat/webhook-adc-validation by
this push:
new ec74a51f fix: proxy remaining docker hub images
ec74a51f is described below
commit ec74a51f328d8813fa9cd05f17b002298c6e7f30
Author: rongxin <[email protected]>
AuthorDate: Mon Apr 27 17:50:28 2026 +0800
fix: proxy remaining docker hub images
Co-authored-by: Copilot <[email protected]>
---
Makefile | 4 ++--
cmd/e2e-echo-server/main.go | 4 +++-
2 files changed, 5 insertions(+), 3 deletions(-)
diff --git a/Makefile b/Makefile
index 1e89e087..a28ddb74 100644
--- a/Makefile
+++ b/Makefile
@@ -253,8 +253,8 @@ pull-infra-images:
dockerhub_proxy="$${DOCKERHUB_PROXY:-docker.m.daocloud.io}"; \
retry_pull "$$dockerhub_proxy/kennethreitz/httpbin:latest"
"kennethreitz/httpbin:latest"; \
retry_pull "ghcr.io/api7/adc:dev" "ghcr.io/api7/adc:dev"; \
- retry_pull "apache/apisix:dev" "apache/apisix:dev"; \
- retry_pull "openresty/openresty:1.27.1.2-4-bullseye-fat"
"openresty/openresty:1.27.1.2-4-bullseye-fat"
+ retry_pull "$$dockerhub_proxy/apache/apisix:dev" "apache/apisix:dev"; \
+ retry_pull
"$$dockerhub_proxy/openresty/openresty:1.27.1.2-4-bullseye-fat"
"openresty/openresty:1.27.1.2-4-bullseye-fat"
##@ Build
diff --git a/cmd/e2e-echo-server/main.go b/cmd/e2e-echo-server/main.go
index 98a84c71..4e9a097b 100644
--- a/cmd/e2e-echo-server/main.go
+++ b/cmd/e2e-echo-server/main.go
@@ -20,7 +20,9 @@ func main() {
if err != nil {
return
}
- defer conn.Close()
+ defer func() {
+ _ = conn.Close()
+ }()
for {
messageType, message, err := conn.ReadMessage()