Skip to content

Commit

Permalink
Fix issue
Browse files Browse the repository at this point in the history
  • Loading branch information
micafer committed Feb 7, 2025
1 parent ed1ea2d commit 5a09ce8
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions faassupervisor/storage/providers/rucio.py
Original file line number Diff line number Diff line change
Expand Up @@ -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


Expand Down

0 comments on commit 5a09ce8

Please sign in to comment.