From 9632a3836aa0764585331aa7eef8fc0944cbb187 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Magiera?= Date: Thu, 14 Jan 2021 16:47:30 +0100 Subject: [PATCH] Print msg cid in terminate flush --- cmd/lotus-storage-miner/sectors.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cmd/lotus-storage-miner/sectors.go b/cmd/lotus-storage-miner/sectors.go index 110572b78..8e3b0bfc4 100644 --- a/cmd/lotus-storage-miner/sectors.go +++ b/cmd/lotus-storage-miner/sectors.go @@ -454,6 +454,8 @@ var sectorsTerminateFlushCmd = &cli.Command{ return xerrors.New("no sectors were queued for termination") } + fmt.Println(mcid) + return nil }, } @@ -475,7 +477,7 @@ var sectorsTerminatePendingCmd = &cli.Command{ } for _, id := range pending { - fmt.Println(id) + fmt.Println(id.Number) } return nil