From b836705acc2a9c080c407b95a1266cc3773ac574 Mon Sep 17 00:00:00 2001 From: Ben Galewsky Date: Thu, 18 Mar 2021 12:02:10 -0500 Subject: [PATCH] Fix incorrect usage of MinioAdaptorFactory call --- servicex/servicex.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/servicex/servicex.py b/servicex/servicex.py index 4b115bb9..664e19d0 100644 --- a/servicex/servicex.py +++ b/servicex/servicex.py @@ -120,7 +120,7 @@ def __init__(self, self._servicex_adaptor = servicex_adaptor if not minio_adaptor: - self._minio_adaptor = MinioAdaptorFactory(config.settings) + self._minio_adaptor = MinioAdaptorFactory() else: if isinstance(minio_adaptor, MinioAdaptor): self._minio_adaptor = MinioAdaptorFactory(always_return=minio_adaptor)