From ec1659d79ace0c8688c348b0946c20ff408112e4 Mon Sep 17 00:00:00 2001 From: gammazero Date: Mon, 19 Apr 2021 23:41:54 -0700 Subject: [PATCH] go-ipfs-config: Init migration config with empty values --- config/init.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/init.go b/config/init.go index db0eff5f2..be07eec24 100644 --- a/config/init.go +++ b/config/init.go @@ -93,8 +93,8 @@ func InitWithIdentity(identity Identity) (*Config, error) { Resolvers: map[string]string{}, }, Migration: Migration{ - DownloadSources: DefaultMigrationDownloadSources, - Keep: DefaultMigrationKeep, + DownloadSources: []string{}, + Keep: "", }, }