Skip to content

Commit

Permalink
Merge branch 'master' into feat/global_org_secrets
Browse files Browse the repository at this point in the history
  • Loading branch information
lafriks authored Aug 2, 2022
2 parents 59cf6d5 + 550aefe commit 88a368f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 0 additions & 1 deletion .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ body:
and copy paste the text instead.
Tip: You can attach images by clicking this area to highlight it and then dragging files in.
render: shell
validations:
required: false
- type: checkboxes
Expand Down
5 changes: 4 additions & 1 deletion server/store/datastore/proc.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,10 @@ func (s storage) ProcChild(build *model.Build, ppid int, child string) (*model.P

func (s storage) ProcList(build *model.Build) ([]*model.Proc, error) {
procList := make([]*model.Proc, 0, perPage)
return procList, s.engine.Where("proc_build_id = ?", build.ID).Find(&procList)
return procList, s.engine.
Where("proc_build_id = ?", build.ID).
OrderBy("proc_pid").
Find(&procList)
}

func (s storage) ProcCreate(procs []*model.Proc) error {
Expand Down

0 comments on commit 88a368f

Please sign in to comment.