Skip to content
Snippets Groups Projects
Commit 28f9cf36 authored by cramakri's avatar cramakri
Browse files

BIS-38 SP-204 : Improved message in case of node existence difference.

SVN: 26278
parent d4732697
No related branches found
No related tags found
No related merge requests found
......@@ -392,11 +392,11 @@ public class DataSetAndPathInfoDBConsistencyCheckProcessingPlugin implements IPr
if (existsInFS)
{
return "'" + getPath()
+ "' exists in the file system but doesn't exist in the path info database";
+ "' exists on the file system but doesn't exist in the path info database";
} else
{
return "'" + getPath()
+ "' exists in the path info database but doesn't exist in the file system";
+ "' exists in the path info database but doesn't exist on the file system";
}
}
......
......@@ -243,7 +243,7 @@ public class DataSetAndPathInfoDBConsistencyCheckProcessingPluginTest extends
+ "Differences found:\n\n"
+ "Data set ds-1:\n"
+ "- 'targets/unit-test-wd/ch.systemsx.cisd.openbis.dss.generic.server.plugins.standard.DataSetAndPathInfoDBConsistencyCheckProcessingPluginTest' "
+ "exists in the path info database but doesn't exist in the file system\n\n";
+ "exists in the path info database but doesn't exist on the file system\n\n";
} else
{
......
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