Adapt sync/ path to recent change.

This commit is contained in:
Karsten Loesing 2016-10-27 20:32:54 +02:00
parent 7a33c3ed9c
commit 3081583d9f

View File

@ -71,7 +71,7 @@ public class SyncManager {
Path basePath = conf.getPath(Key.SyncPath);
SyncPersistence persist = new SyncPersistence(conf);
for (URL source : sources) {
File base = new File(basePath.toFile(), source.getHost());
File base = new File(basePath.toFile(), marker + "-" + source.getHost());
log.info("Merging {} from {} into storage ...", marker,
source.getHost());
for (Map.Entry<String, Class<? extends Descriptor>> entry