[fix][typing] startResourceClaimController errrorf message has typos

This commit is contained in:
codetalks 2023-03-12 12:06:33 +08:00
parent fcfe5dfc21
commit c94bcabd7e

View File

@ -374,7 +374,7 @@ func startResourceClaimController(ctx context.Context, controllerContext Control
controllerContext.InformerFactory.Resource().V1alpha1().ResourceClaims(),
controllerContext.InformerFactory.Resource().V1alpha1().ResourceClaimTemplates())
if err != nil {
return nil, true, fmt.Errorf("failed to start ephemeral volume controller: %v", err)
return nil, true, fmt.Errorf("failed to start resource claim controller: %v", err)
}
go ephemeralController.Run(ctx, defaultResourceClaimControllerWorkers)
return nil, true, nil