Skip to content

Commit 43deb7d

Browse files
committed
focus test
1 parent 0eb6f26 commit 43deb7d

File tree

3 files changed

+1
-7
lines changed

3 files changed

+1
-7
lines changed

internal/provider/api7ee/provider.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -251,9 +251,6 @@ func (d *api7eeProvider) sync(ctx context.Context) error {
251251
}
252252

253253
func (d *api7eeProvider) handleADCExecutionErrors(statusesMap map[string]types.ADCExecutionErrors) {
254-
if len(statusesMap) == 0 {
255-
return
256-
}
257254
statusUpdateMap := d.resolveADCExecutionErrors(statusesMap)
258255
d.handleStatusUpdate(statusUpdateMap)
259256
log.Debugw("handled ADC execution errors", zap.Any("status_record", statusesMap), zap.Any("status_update", statusUpdateMap))

internal/provider/apisix/provider.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -274,9 +274,6 @@ func (d *apisixProvider) syncNotify() {
274274
}
275275

276276
func (d *apisixProvider) handleADCExecutionErrors(statusesMap map[string]types.ADCExecutionErrors) {
277-
if len(statusesMap) == 0 {
278-
return
279-
}
280277
statusUpdateMap := d.resolveADCExecutionErrors(statusesMap)
281278
d.handleStatusUpdate(statusUpdateMap)
282279
log.Debugw("handled ADC execution errors", zap.Any("status_record", statusesMap), zap.Any("status_update", statusUpdateMap))

test/e2e/gatewayapi/status.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ spec:
107107
Expect(gwyaml).To(ContainSubstring("message: the gateway has been accepted by the apisix-ingress-controller"), "checking Gateway condition message")
108108
})
109109

110-
It("dataplane unavailable", func() {
110+
FIt("dataplane unavailable", func() {
111111
if os.Getenv("PROVIDER_TYPE") == framework.ProviderTypeAPI7EE {
112112
Skip("skip for api7ee mode because it use dashboard admin api")
113113
}

0 commit comments

Comments
 (0)