From e04799be03dd996c8dbb3fef6e558dd3ae5f399a Mon Sep 17 00:00:00 2001 From: Sinisa Veseli <sveseli@aps.anl.gov> Date: Fri, 29 Jan 2016 21:21:09 +0000 Subject: [PATCH] debug statements --- .../common/processing/plugins/gridftpFileTransferPlugin.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/python/dm/common/processing/plugins/gridftpFileTransferPlugin.py b/src/python/dm/common/processing/plugins/gridftpFileTransferPlugin.py index e8cf725c..cd3e4871 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) -- GitLab