From f9641d70afd37ca4db9aca946f688e329da352c4 Mon Sep 17 00:00:00 2001 From: Jiaying Wang <42981373+jennijuju@users.noreply.github.com> Date: Thu, 24 Feb 2022 16:27:24 -0500 Subject: [PATCH] fix: sealing: missing file type --- extern/sector-storage/stores/http_handler.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/extern/sector-storage/stores/http_handler.go b/extern/sector-storage/stores/http_handler.go index 771a9a3a1..80fa87408 100644 --- a/extern/sector-storage/stores/http_handler.go +++ b/extern/sector-storage/stores/http_handler.go @@ -294,6 +294,10 @@ func ftFromString(t string) (storiface.SectorFileType, error) { return storiface.FTSealed, nil case storiface.FTCache.String(): return storiface.FTCache, nil + case storiface.FTUpdate.String(): + return storiface.FTUpdate, nil + case storiface.FTUpdateCache.String(): + return storiface.FTUpdateCache, nil default: return 0, xerrors.Errorf("unknown sector file type: '%s'", t) }