microsoft / durabletask-go

The Durable Task Framework is a lightweight, embeddable engine for writing durable, fault-tolerant business logic (orchestrations) as ordinary code.
Apache License 2.0
178 stars 25 forks source link

Scheduling of workflows #57

Open shivamkm07 opened 5 months ago

shivamkm07 commented 5 months ago

While creating a new orchestration, the user can schedule it to run at a later time by setting the ScheduledStartTimestamp field here: https://github.com/microsoft/durabletask-go/blob/fc5756737d3c85ac4903adf35b58fce25f36641b/internal/protos/orchestrator_service.pb.go#L2724

However, it gets ignored while sending the request to backend: https://github.com/microsoft/durabletask-go/blob/fc5756737d3c85ac4903adf35b58fce25f36641b/backend/executor.go#L315

It needs to be passed to backend so that backend can schedule workflows accordingly.

joebowbeer commented 2 weeks ago

Close this if it was fixed by #60 ?