We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74a5c6d commit f6b010cCopy full SHA for f6b010c
db-connector.go
@@ -11021,7 +11021,7 @@ func GetUnfinishedExecutionsCron(ctx context.Context) (map[string][]WorkflowExec
11021
// FIXME: Sorting doesn't seem to work...
11022
//StartedAt int64 `json:"started_at" datastore:"started_at"`
11023
var query *datastore.Query
11024
- query = datastore.NewQuery(index).Filter("started_at >", time.Now().Unix()-3600).Order("-started_at").Limit(100)
+ query = datastore.NewQuery(index).Filter("started_at >", time.Now().Unix()-60).Order("-started_at").Limit(100)
11025
11026
max := 100000
11027
cursorStr := ""
0 commit comments