Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/DIRAC/Resources/Computing/AREXComputingElement.py
Original file line number Diff line number Diff line change
Expand Up @@ -803,8 +803,8 @@ def getCEStatus(self):
try:
ceData = response.json()
except requests.JSONDecodeError:
self.log.exception("Failed decoding the status of the CE")
return S_ERROR(f"Failed decoding the status of the CE")
self.log.error("Failed decoding the status of the CE")
return S_ERROR("Failed decoding the status of the CE")

# Look only in the relevant section out of the headache
# This "safe_get" function allows to go down the dictionary
Expand Down
Loading