Skip to content

Commit

Permalink
feat (RSS): do not consider the end point in SpaceOccupancy anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
chaen committed Aug 29, 2024
1 parent cfe7863 commit 1dbe1a9
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 1dbe1a9

Please sign in to comment.