fix bugs from testing.

This commit is contained in:
Raúl Kripalani 2021-08-05 14:43:01 +01:00
parent f19f5269df
commit 21d078e7e1
2 changed files with 4 additions and 4 deletions

View File

@ -62,7 +62,7 @@ var dagstoreListShardsCmd = &cli.Command{
"Key": s.Key,
"State": func() string {
if c, ok := colors[s.State]; ok {
return color.New(c).Sprint(s)
return color.New(c).Sprint(s.State)
}
return s.State
}(),
@ -170,9 +170,9 @@ var dagstoreGcCmd = &cli.Command{
for _, e := range collected {
if e.Error == "" {
_, _ = fmt.Fprintln(os.Stdout, e.Key, "success")
_, _ = fmt.Fprintln(os.Stdout, e.Key, color.New(color.FgGreen).Sprint("SUCCESS"))
} else {
_, _ = fmt.Fprintln(os.Stdout, e.Key, "failed:", e.Error)
_, _ = fmt.Fprintln(os.Stdout, e.Key, color.New(color.FgRed).Sprint("ERROR"), e.Error)
}
}

View File

@ -656,7 +656,7 @@ func (sm *StorageMinerAPI) DagstoreInitializeAll(ctx context.Context, params api
res := make(chan api.DagstoreShardResult, 32) // returned to caller.
go func() {
close(res) // close the caller channel.
defer close(res) // close the caller channel.
pending := len(uninit)
for pending > 0 {