From f40dfe1e8e70dc01758b18394fca1743707fd395 Mon Sep 17 00:00:00 2001 From: Maximilian Linhoff Date: Tue, 7 Oct 2025 16:16:15 +0200 Subject: [PATCH] fix: add missing option in RucioFileCatalog.getUserMetadataBulk --- src/DIRAC/Resources/Catalog/RucioFileCatalogClient.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/DIRAC/Resources/Catalog/RucioFileCatalogClient.py b/src/DIRAC/Resources/Catalog/RucioFileCatalogClient.py index 5eae4133add..2e30afd24d0 100644 --- a/src/DIRAC/Resources/Catalog/RucioFileCatalogClient.py +++ b/src/DIRAC/Resources/Catalog/RucioFileCatalogClient.py @@ -736,7 +736,7 @@ def getFileUserMetadataBulk(self, lfns): except Exception as err: return S_ERROR(str(err)) try: - for met in self.client.get_metadata_bulk(dids=dids, inherit=True): + for met in self.client.get_metadata_bulk(dids=dids, inherit=True, plugin="ALL"): lfn = met["name"] resDict["Successful"][lfn] = met for lfn in lfnList: