Skip to content
This repository has been archived by the owner on Jun 21, 2022. It is now read-only.

Commit

Permalink
XRootDSource.defaults['parallel'] = False because pyxrootd asynchrono…
Browse files Browse the repository at this point in the history
…us mode deadlocks too easily
  • Loading branch information
jpivarski committed May 30, 2019
1 parent 383ec77 commit 1e68288
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion uproot/source/xrootd.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def __init__(self, path, timeout=None, *args, **kwds):
self.timeout = timeout
super(XRootDSource, self).__init__(path, *args, **kwds)

defaults = {"timeout": None, "chunkbytes": 32*1024, "limitbytes": 32*1024**2, "parallel": True}
defaults = {"timeout": None, "chunkbytes": 32*1024, "limitbytes": 32*1024**2, "parallel": False}

def _open(self):
try:
Expand Down
2 changes: 1 addition & 1 deletion uproot/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import re

__version__ = "3.6.1"
__version__ = "3.6.2"
version = __version__
version_info = tuple(re.split(r"[-\.]", __version__))

Expand Down

0 comments on commit 1e68288

Please sign in to comment.