From ceae9376f4009ef23e8dcd9af0cbd316bf5174fe Mon Sep 17 00:00:00 2001 From: Peter Rowlands Date: Thu, 30 Apr 2020 10:36:30 +0900 Subject: [PATCH] remote: adjust traverse threshold multiplier * Fixes #3704 --- dvc/remote/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dvc/remote/base.py b/dvc/remote/base.py index 7414397370..ac9a9257f0 100644 --- a/dvc/remote/base.py +++ b/dvc/remote/base.py @@ -95,7 +95,7 @@ class BaseRemote(object): DEFAULT_CACHE_TYPES = ["copy"] DEFAULT_VERIFY = False LIST_OBJECT_PAGE_SIZE = 1000 - TRAVERSE_WEIGHT_MULTIPLIER = 20 + TRAVERSE_WEIGHT_MULTIPLIER = 5 TRAVERSE_PREFIX_LEN = 3 TRAVERSE_THRESHOLD_SIZE = 500000 CAN_TRAVERSE = True