File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
internal/provider/kubernetes Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ func (r *gatewayAPIReconciler) getExtensionRefFilters(ctx context.Context) ([]un
2424 uExtResourceList := & unstructured.UnstructuredList {}
2525 uExtResourceList .SetGroupVersionKind (gvk )
2626 if err := r .client .List (ctx , uExtResourceList ); err != nil {
27- r .log .Info ("no associated resources found for %s " , gvk .String ())
27+ r .log .Info ("no associated resources found" , "GVK " , gvk .String ())
2828 return nil , fmt .Errorf ("failed to list %s: %w" , gvk .String (), err )
2929 }
3030
@@ -57,7 +57,7 @@ func (r *gatewayAPIReconciler) getExtensionBackendResources(ctx context.Context)
5757 uExtResourceList := & unstructured.UnstructuredList {}
5858 uExtResourceList .SetGroupVersionKind (gvk )
5959 if err := r .client .List (ctx , uExtResourceList ); err != nil {
60- r .log .Info ("no associated backend resources found for %s " , gvk .String ())
60+ r .log .Info ("no associated backend resources found" , "GVK " , gvk .String ())
6161 return nil , fmt .Errorf ("failed to list %s: %w" , gvk .String (), err )
6262 }
6363
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ bug fixes: |
1414 Fixed %ROUTE_KIND% operator to be lower-cased when used by clusterStatName in EnvoyProxy API.
1515 Fixed maxAcceptPerSocketEvent being ignored in ClientTrafficPolicy
1616 Fixed the topologyInjectorDisabled and the local cluster was not defined.
17+ Fixed log formatting of improper key-value pairs to avoid DPANIC in controller-runtime logger.
1718
1819# Enhancements that improve performance.
1920performance improvements : |
You can’t perform that action at this time.
0 commit comments