From 5a09ce8ec8d1933c5fcedfb44e58b7c2c7a820dc Mon Sep 17 00:00:00 2001 From: Miguel Caballer Date: Fri, 7 Feb 2025 13:30:16 +0100 Subject: [PATCH] Fix issue --- faassupervisor/storage/providers/rucio.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/faassupervisor/storage/providers/rucio.py b/faassupervisor/storage/providers/rucio.py index eaccefb..6d6b48a 100644 --- a/faassupervisor/storage/providers/rucio.py +++ b/faassupervisor/storage/providers/rucio.py @@ -20,8 +20,10 @@ # Import classes to force pyinstaller to add them to the package try: import dogpile.cache.backends.memory # noqa pylint: disable=unused-import - from rucio.rse.protocols import bittorrent, cache, dummy, gfal, globus, gsiftp, http_cache, mock, ngarc, posix, protocol, rclone, rfio, srm, ssh, storm, webdav, xrootd # noqa pylint: disable=unused-import -except Exception: # pylint: disable=broad-except + from rucio.rse.protocols import bittorrent, cache, dummy, globus, gsiftp, http_cache, mock, ngarc, posix, protocol, rclone, rfio, srm, ssh, storm, webdav, xrootd # noqa pylint: disable=unused-import + # from rucio.rse.protocols import gfal # noqa pylint: disable=unused-import + # import gfal2 # noqa pylint: disable=unused-import +except Exception: # noqa pylint: disable=broad-except pass