Skip to content

Commit

Permalink
Merge pull request #7771 from chaen/v8.0_feat_removEndpointForSpaceOc…
Browse files Browse the repository at this point in the history
…cupancy

[8.0] remove endpoint for space occupancy
  • Loading branch information
fstagni committed Aug 30, 2024
2 parents 9554fff + 1dbe1a9 commit 4bfb083
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions src/DIRAC/ResourceStatusSystem/Command/FreeDiskSpaceCommand.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
For the moment, when you see "token" or "space token" here, just read "StorageElement".
"""

import errno
import sys
from datetime import datetime, timedelta
Expand Down Expand Up @@ -78,14 +79,7 @@ def doNew(self, masterParams=None):
free = occupancy["Free"]
total = occupancy["Total"]

endpointResult = CSHelpers.getStorageElementEndpoint(elementName)
if not endpointResult["OK"]:
return endpointResult
# We only take the first endpoint, in case there are severals of them (which is normal).
# Most probably not ideal, because it would be nice to stay consistent, but well...
endpoint = endpointResult["Value"][0]

results = {"Endpoint": endpoint, "Free": free, "Total": total, "ElementName": elementName}
results = {"Endpoint": "Deprecated", "Free": free, "Total": total, "ElementName": elementName}
result = self._storeCommand(results)
if not result["OK"]:
return result
Expand Down

0 comments on commit 4bfb083

Please sign in to comment.