Skip to content

Commit 6f4c05c

Browse files
committed
fix: add missing option in RucioFileCatalog.getUserMetadataBulk
1 parent 9cad013 commit 6f4c05c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/DIRAC/Resources/Catalog/RucioFileCatalogClient.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -736,7 +736,7 @@ def getFileUserMetadataBulk(self, lfns):
736736
except Exception as err:
737737
return S_ERROR(str(err))
738738
try:
739-
for met in self.client.get_metadata_bulk(dids=dids, inherit=True):
739+
for met in self.client.get_metadata_bulk(dids=dids, inherit=True, plugin="ALL"):
740740
lfn = met["name"]
741741
resDict["Successful"][lfn] = met
742742
for lfn in lfnList:

0 commit comments

Comments
 (0)