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
6 changes: 3 additions & 3 deletions src/DIRAC/DataManagementSystem/Client/FTS3Job.py
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ def monitor(self, context=None, ftsServer=None, ucert=None):

# If the file is failed, check if it is recoverable
if file_state in FTS3File.FTS_FAILED_STATES:
if not fileDict.get("Recoverable", True):
if not fileDict.get("recoverable", True):
filesStatus[file_id]["status"] = "Defunct"

# If the file is not in a final state, but the job is, we return an error
Expand Down Expand Up @@ -400,7 +400,7 @@ def _constructTransferJob(self, pinTime, allLFNs, target_spacetoken, protocols=N
:return: S_OK( (job object, list of ftsFileIDs in the job))
"""

log = gLogger.getSubLogger(f"constructTransferJob/{self.operationID}/{self.sourceSE}_{self.targetSE}")
log = gLogger.getLocalSubLogger(f"constructTransferJob/{self.operationID}/{self.sourceSE}_{self.targetSE}")

isMultiHop = False
useTokens = False
Expand Down Expand Up @@ -745,7 +745,7 @@ def _constructStagingJob(self, pinTime, allLFNs, target_spacetoken):
:return: S_OK( (job object, list of ftsFileIDs in the job))
"""

log = gLogger.getSubLogger(f"constructStagingJob/{self.operationID}/{self.targetSE}")
log = gLogger.getLocalSubLogger(f"constructStagingJob/{self.operationID}/{self.targetSE}")

transfers = []
fileIDsInTheJob = set()
Expand Down
Loading