You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
pull: _get_file() got an unexpected keyword argument 'max_concurrency'
Description
When running dvc pull, I am getting the following error:
ERROR: failed to transfer 'da9e3e6905fddf1bd672718f26702bb4' - _get_file() got an unexpected keyword argument 'max_concurrency'
Traceback (most recent call last):
File "/home/runner/.venv/lib/python3.8/site-packages/dvc_objects/executors.py", line 135, in batch_coros
result = fut.result()
File "/home/runner/.venv/lib/python3.8/site-packages/dvc_objects/fs/generic.py", line 219, in _get_one_coro
return await get_coro(
File "/home/runner/.venv/lib/python3.8/site-packages/dvc_objects/fs/callbacks.py", line 140, in async_wrapper
res = await fn(*args, **kwargs)
File "/home/runner/.venv/lib/python3.8/site-packages/dvc_objects/fs/callbacks.py", line 159, in async_wrapper
return await fn(path1, path2, **kwargs)
TypeError: _get_file() got an unexpected keyword argument 'max_concurrency'
Reproduce
pip install dvc[s3]
dvc pull
Expected
Dvc pull should pull files without errors.
Environment information
I am running inside of a docker container on AWS Linux. Python 3.8, dvc 3.42.0 with no other packages installed. The only installation I ran was pip install dvc[s3] in a fresh environment. I am thinking this is happening due to some weird upstream dependency that got updated, but I am unsure.
One thing I noticed was that there is no cache types (seen in output of dvc doctor), I have tried both mkdir .dvc/cache and dvc config cache.type hardlink,symlink but to no avail.
The text was updated successfully, but these errors were encountered:
I am running into the same issue. I noticed that on Python 3.8 it downloads an older version 3.42. On Python 3.9 it downloads the latest version. The repo badges indicate that DVC is 3.9+, but the docs say it's 3.8+.
Bug Report
Issue name
pull: _get_file() got an unexpected keyword argument 'max_concurrency'
Description
When running
dvc pull
, I am getting the following error:Reproduce
Expected
Dvc pull should pull files without errors.
Environment information
I am running inside of a docker container on AWS Linux. Python 3.8, dvc 3.42.0 with no other packages installed. The only installation I ran was
pip install dvc[s3]
in a fresh environment. I am thinking this is happening due to some weird upstream dependency that got updated, but I am unsure.Output of
dvc doctor
:Additional Information (if any):
One thing I noticed was that there is no cache types (seen in output of dvc doctor), I have tried both
mkdir .dvc/cache
anddvc config cache.type hardlink,symlink
but to no avail.The text was updated successfully, but these errors were encountered: