Handle error events in itctl res load command (#29)
This commit is contained in:
parent
1e072a3540
commit
c6458720e9
@ -35,6 +35,10 @@ func resLoad(ctx context.Context, args []string) error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
for evt := range progCh {
|
for evt := range progCh {
|
||||||
|
if evt.Err != nil {
|
||||||
|
return evt.Err
|
||||||
|
}
|
||||||
|
|
||||||
if evt.Operation == infinitime.ResourceOperationRemoveObsolete {
|
if evt.Operation == infinitime.ResourceOperationRemoveObsolete {
|
||||||
bar.SetTemplateString(rmTmpl)
|
bar.SetTemplateString(rmTmpl)
|
||||||
bar.Set("filename", evt.Name)
|
bar.Set("filename", evt.Name)
|
||||||
|
Loading…
Reference in New Issue
Block a user