Skip to content

Commit

Permalink
Fix num characters
Browse files Browse the repository at this point in the history
  • Loading branch information
CoreyCook8 authored and ccojocar committed Jan 23, 2024
1 parent f3d7d5f commit 54f7381
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion internal/pkg/webhooks/binding/binding.go
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,11 @@ func (p *podBinder) Handle(ctx context.Context, req admission.Request) admission
return admission.PatchResponseFromRaw(req.Object.Raw, marshaledPod)
}

func (p *podBinder) updatePod(ctx context.Context, profilebindings []profilebindingv1alpha1.ProfileBinding, req *admission.Request) (*corev1.Pod, admission.Response) {
func (p *podBinder) updatePod(
ctx context.Context,
profilebindings []profilebindingv1alpha1.ProfileBinding,
req *admission.Request,
) (*corev1.Pod, admission.Response) {
var err error
var podBindProfile *interface{}
var containers sync.Map
Expand Down

0 comments on commit 54f7381

Please sign in to comment.