Skip to content

Commit 6f8cc97

Browse files
authored
Merge pull request #8327 from maxnoe/rucio-meta-consistent
fix: add missing option in RucioFileCatalog.getUserMetadataBulk
2 parents 9cad013 + 6f4c05c commit 6f8cc97

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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)