(ctx context.Context, entity *pb.Entity)
| 707 | } |
| 708 | |
| 709 | func (serv *MetadataServer) CreateEntity(ctx context.Context, entity *pb.Entity) (*pb.Empty, error) { |
| 710 | serv.Logger.Infow("Creating Entity", "entity", entity.Name) |
| 711 | return serv.meta.CreateEntity(ctx, entity) |
| 712 | } |
| 713 | |
| 714 | func (serv *MetadataServer) RequestScheduleChange(ctx context.Context, req *pb.ScheduleChangeRequest) (*pb.Empty, error) { |
| 715 | serv.Logger.Infow("Requesting Schedule Change", "resource", req.ResourceId, "new schedule", req.Schedule) |
nothing calls this directly
no outgoing calls
no test coverage detected