diff --git a/src/python/dm/common/processing/plugins/gridftpFileTransferPlugin.py b/src/python/dm/common/processing/plugins/gridftpFileTransferPlugin.py index e8cf725ce7ba67ae37dff218267bc850aa3dbc01..cd3e487182f0535431bac465f7cd7b5bc50f71ac 100755 --- a/src/python/dm/common/processing/plugins/gridftpFileTransferPlugin.py +++ b/src/python/dm/common/processing/plugins/gridftpFileTransferPlugin.py @@ -56,9 +56,10 @@ class GridftpFileTransferPlugin(FileTransferPlugin): filePaths = filePathsDict.keys() for filePath in filePaths: filePathDict = filePathsDict.get(filePath) - experimentFilePath = os.path.relpath(filePath, dataDirectory) - storageFilePath = os.path.join(storageDirectory, experimentFilePath) - storageFilePathDict = storageFilePathsDict.get(storageFilePath) + #experimentFilePath = os.path.relpath(filePath, dataDirectory) + #storageFilePath = os.path.join(storageDirectory, experimentFilePath) + #storageFilePathDict = storageFilePathsDict.get(storageFilePath) + storageFilePathDict = storageFilePathsDict.get(filePath) self.logger.debug("SVDBG SRC: %s", filePathDict) self.logger.debug("SVDBG DEST: %s", storageFilePathDict)