Loading transfer_service/retrieve_executor.py +5 −0 Original line number Diff line number Diff line Loading @@ -35,7 +35,12 @@ class RetrieveExecutor(TaskExecutor): osRelParentPath = os.path.dirname(osRelPath) if osRelParentPath != "/": osRelParentPath += "/" out = open("retrieve_executor_log.txt", "a") out.write(f"srcPath: {srcPath}\n") out.write(f"osRelPath: {osRelPath}\n") out.write(f"osRelParentPath: {osRelParentPath}\n") destPath = self.storageRetrievePath.replace("{username}", username) + osRelParentPath out.write(f"destPath: {destPath}\n\n") if storageType == "cold": #srcPathPrefix = self.tapeStorageBasePath.replace("{username}", self.username) # TO BE DONE Loading Loading
transfer_service/retrieve_executor.py +5 −0 Original line number Diff line number Diff line Loading @@ -35,7 +35,12 @@ class RetrieveExecutor(TaskExecutor): osRelParentPath = os.path.dirname(osRelPath) if osRelParentPath != "/": osRelParentPath += "/" out = open("retrieve_executor_log.txt", "a") out.write(f"srcPath: {srcPath}\n") out.write(f"osRelPath: {osRelPath}\n") out.write(f"osRelParentPath: {osRelParentPath}\n") destPath = self.storageRetrievePath.replace("{username}", username) + osRelParentPath out.write(f"destPath: {destPath}\n\n") if storageType == "cold": #srcPathPrefix = self.tapeStorageBasePath.replace("{username}", self.username) # TO BE DONE Loading