Skip to content

Commit

Permalink
update task dao count
Browse files Browse the repository at this point in the history
Signed-off-by: yminer <yminer@vmware.com>
  • Loading branch information
MinerYang committed Jun 5, 2024
1 parent 496fd0e commit 6f85beb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pkg/task/dao/task.go
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ func (t *taskDAO) GetMaxEndTime(ctx context.Context, executionID int64) (time.Ti
}

func (t *taskDAO) querySetter(ctx context.Context, query *q.Query) (orm.QuerySeter, error) {
qs, err := orm.QuerySetter(ctx, &Task{}, query)
qs, err := orm.QuerySetter(ctx, &Task{}, query, "disableSort")
if err != nil {
return nil, err
}
Expand Down

0 comments on commit 6f85beb

Please sign in to comment.