Skip to content

Commit d923c7c

Browse files
committed
fix: r
Signed-off-by: Ashing Zheng <[email protected]>
1 parent edebb9e commit d923c7c

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.github/workflows/e2e-test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ jobs:
3535
cases_subset:
3636
- apisix.apache.org
3737
- networking.k8s.io
38+
- webhook
3839
fail-fast: false
3940
runs-on: ubuntu-latest
4041
steps:

internal/provider/common/adcdebugserver.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ func (asrv *ADCDebugProvider) showResourceDetail(w http.ResponseWriter, r *http.
262262
return
263263
}
264264

265-
var resource interface{}
265+
var resource any
266266
switch resourceType {
267267
case adctypes.TypeService:
268268
for _, svc := range resources.Services {

test/e2e/scaffold/grpc.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,14 @@ import (
2121
"strings"
2222
"time"
2323

24-
"github.com/apache/apisix-ingress-controller/test/e2e/framework"
2524
"google.golang.org/grpc"
2625
"google.golang.org/grpc/codes"
2726
"google.golang.org/grpc/credentials/insecure"
2827
"google.golang.org/grpc/metadata"
2928
"google.golang.org/grpc/status"
3029
pb "sigs.k8s.io/gateway-api/conformance/echo-basic/grpcechoserver"
30+
31+
"github.com/apache/apisix-ingress-controller/test/e2e/framework"
3132
)
3233

3334
type RequestMetadata struct {

0 commit comments

Comments
 (0)