From af12f0d06c41475261436b634f809a995b960d1f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Peter=20Rowlands=20=28=EB=B3=80=EA=B8=B0=ED=98=B8=29?= Date: Thu, 30 Apr 2020 12:12:11 +0900 Subject: [PATCH] remote: adjust traverse threshold multiplier (#3705) * 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