(ctx context.Context, com *proto.CommitQuotaRequest)
| 1343 | } |
| 1344 | |
| 1345 | func (p *provisionerDaemonTestServer) CommitQuota(ctx context.Context, com *proto.CommitQuotaRequest) (*proto.CommitQuotaResponse, error) { |
| 1346 | if p.commitQuota == nil { |
| 1347 | return &proto.CommitQuotaResponse{ |
| 1348 | Ok: true, |
| 1349 | }, nil |
| 1350 | } |
| 1351 | return p.commitQuota(ctx, com) |
| 1352 | } |
| 1353 | |
| 1354 | func (p *provisionerDaemonTestServer) UpdateJob(ctx context.Context, update *proto.UpdateJobRequest) (*proto.UpdateJobResponse, error) { |
| 1355 | return p.updateJob(ctx, update) |
nothing calls this directly
no test coverage detected