We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e4ba10 commit 348b32eCopy full SHA for 348b32e
cmd/retrohunt.go
@@ -84,8 +84,8 @@ func retrohuntListTable(cmd *cobra.Command) error {
84
}
85
86
eta := "-"
87
- if e, ok := job.Attributes["eta"].(int64); ok {
88
- eta = fmt.Sprintf("%ds", e)
+ if e, ok := job.Attributes["eta_seconds"].(int64); ok {
+ eta = time.Duration(e * 1000000000).String()
89
90
91
matches := rulesPattern.FindAllStringSubmatch(job.Attributes["rules"].(string), 5)
0 commit comments