Merge pull request #116503 from codetalks-new/br_fix_text

[fix][typing] startResourceClaimController errrorf message has typos
This commit is contained in:
Kubernetes Prow Robot 2023-04-11 23:18:31 -07:00 committed by GitHub
commit 2308086e29
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -379,7 +379,7 @@ func startResourceClaimController(ctx context.Context, controllerContext Control
controllerContext.InformerFactory.Resource().V1alpha2().ResourceClaims(),
controllerContext.InformerFactory.Resource().V1alpha2().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