From 9128b2d363c6511917808824ec7a39f5cc041980 Mon Sep 17 00:00:00 2001 From: Ian Davis Date: Mon, 1 Feb 2021 17:38:02 +0000 Subject: [PATCH] chore: increase lens object cache size --- commands/setup.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/setup.go b/commands/setup.go index d882090cd..65c778a80 100644 --- a/commands/setup.go +++ b/commands/setup.go @@ -103,7 +103,7 @@ func setupDatabase(cctx *cli.Context) (*storage.Database, error) { func setupLens(cctx *cli.Context) (lens.APIOpener, lens.APICloser, error) { switch cctx.String("lens") { case "lotus": - return vapi.NewAPIOpener(cctx, 10_000) + return vapi.NewAPIOpener(cctx, 50_000) case "lotusrepo": return repoapi.NewAPIOpener(cctx) case "carrepo":