Skip to content
Snippets Groups Projects
Commit aac53cf2 authored by Roel Aaij's avatar Roel Aaij
Browse files

Merge branch 'dcampora_delay_xrootd_import' into 'master'

Delay XRootD import to only require it if an eos file is requested

Closes Allen#372

See merge request !3783
parents e77c1fb7 959782c3
No related branches found
No related tags found
1 merge request!3783Delay XRootD import to only require it if an eos file is requested
Pipeline #4525796 passed
......@@ -8,13 +8,14 @@
# granted to it by virtue of its status as an Intergovernmental Organization #
# or submit itself to any jurisdiction. #
###############################################################################
import os, XRootD.client
import os
def load_file(fname):
if not fname: return None
if fname.startswith("root://eoslhcb.cern.ch//"):
import XRootD.client
with XRootD.client.File() as f:
status, _ = f.open(str(fname))
if not status.ok:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment