(ctx context.Context, in *proto.CommitQuotaRequest)
| 493 | } |
| 494 | |
| 495 | func (p *Server) CommitQuota(ctx context.Context, in *proto.CommitQuotaRequest) (*proto.CommitQuotaResponse, error) { |
| 496 | out, err := clientDoWithRetries(ctx, p.client, func(ctx context.Context, client proto.DRPCProvisionerDaemonClient) (*proto.CommitQuotaResponse, error) { |
| 497 | return client.CommitQuota(ctx, in) |
| 498 | }) |
| 499 | if err != nil { |
| 500 | return nil, err |
| 501 | } |
| 502 | return out, nil |
| 503 | } |
| 504 | |
| 505 | func (p *Server) UpdateJob(ctx context.Context, in *proto.UpdateJobRequest) (*proto.UpdateJobResponse, error) { |
| 506 | out, err := clientDoWithRetries(ctx, p.client, func(ctx context.Context, client proto.DRPCProvisionerDaemonClient) (*proto.UpdateJobResponse, error) { |
nothing calls this directly
no test coverage detected