Skip to content
Snippets Groups Projects
Commit 0cdf0d90 authored by tpylak's avatar tpylak
Browse files

SE-143 YeastX: 1) bugfix (group code was taken instead of exp. code) 2) change...

SE-143 YeastX: 1) bugfix (group code was taken instead of exp. code) 2) change error to warning if it will be retried

SVN: 12668
parent 4b7defb3
No related branches found
No related tags found
No related merge requests found
......@@ -154,9 +154,10 @@ abstract public class AbstractDatasetDropboxHandler implements Serializable
fileOperations.copyToDirectoryAs(source, destDir, newName);
} catch (IOExceptionUnchecked ex)
{
operationLog.error(createCopyErrorMessage(source, destDir,
operationLog.warn(createCopyErrorMessage(source, destDir,
newName)
+ ": " + ex.getMessage());
+ ". Operation will be retried. Details: "
+ ex.getMessage());
return null;
}
return Boolean.TRUE;
......
......@@ -49,7 +49,7 @@ public class DatasetDescription implements Serializable
this.sampleCode = sampleCode;
this.groupCode = groupCode;
this.projectCode = projectCode;
this.groupCode = groupCode;
this.experimentCode = experimentCode;
}
public String getDataSetLocation()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment