Commit 40bd510 1 parent 01a9afa commit 40bd510 Copy full SHA for 40bd510
File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -12,8 +12,8 @@ type ExecFlags struct {
12
12
Args string `json:"args"`
13
13
EnvVars string `json:"env_vars"`
14
14
Name string `json:"name"`
15
- NoAutoRestart bool `json:"no_auto_restart"`
16
15
Dependencies []string `json:"dependencies"`
16
+ NoAutoRestart bool `json:"no_auto_restart"`
17
17
}
18
18
19
19
func (e * ExecFlags ) Parse (jsonStr string ) (* ExecFlags , error ) {
Original file line number Diff line number Diff line change @@ -76,14 +76,14 @@ type Process struct {
76
76
Args string `json:"args"`
77
77
EnvVars string `json:"env_vars"`
78
78
Username string `json:"username"`
79
+ Dependencies string `json:"dependencies"`
79
80
Status ProcessStatus `json:"status"`
80
81
ID uint32 `gorm:"primary_key" json:"id"`
81
82
Pid uint32 `gorm:"column:pid" json:"pid"`
82
83
Uid uint32 `gorm:"column:uid" json:"uid"`
83
84
Gid uint32 `gorm:"column:gid" json:"gid"`
84
85
RestartCount uint32 `gorm:"-" json:"-"`
85
86
AutoRestart bool `json:"auto_restart"`
86
- Dependencies string `json:"dependencies"`
87
87
}
88
88
89
89
func (p Process ) NoAutoRestartStr () string {
You can’t perform that action at this time.
0 commit comments