Skip to content
Snippets Groups Projects
Commit 715163ad authored by felmer's avatar felmer
Browse files

SSDM-1191: AutoArchiverTask: Add log event in case of nothing to archive in...

SSDM-1191: AutoArchiverTask: Add log event in case of nothing to archive in order to fix integration test.

SVN: 33365
parent 2c0a75f0
No related branches found
No related tags found
No related merge requests found
......@@ -82,6 +82,7 @@ public class AutoArchiverTask implements IMaintenanceTask
List<AbstractExternalData> candidates = archiveCandidateDiscoverer.findDatasetsForArchiving(openBISService, criteria);
if (candidates.isEmpty())
{
operationLog.info("nothing to archive");
return;
}
operationLog.info("apply policy to " + candidates.size() + " candidates for archiving.");
......
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