Project

General

Profile

Bug #864

Even if UUID didn't changed, SVNCR reports: Found changed subversion UUID for repo.

Added by Udo Offermann almost 12 years ago.

Status:
Closed
Priority:
High
Assignee:
Category:
z2-core
Target version:
-
Start date:
Due date:
% Done:

0%

Estimated time:
origin:
trac

Description

Found changed subversion UUID for repo. Will run full scan: environment/acsaRepository.

It happens quite often that the SVNCR things the UUID has changed upon a sync. But the repo hasn't changed at all.
I could see in the debugger that

current.getUUID()

delivers null.

#1

Updated by Udo Offermann almost 12 years ago

Updated by Udo Offermann on 18.08.2011 at 00:29:22

The relevant class is com.zfabrik.impl.svncr.ComponentRepositoryImpl,
method: scan(), line 190:

public ComponentRepositoryDB scan(ComponentRepositoryDB current) {
try {
long targetRevision = getRepoSession().fetchRepoRevision();
if (current==null) {
return fullScan(targetRevision);
}
---> if (!eq(current.getUuid(),this.uuid)) {
logger.info("Found changed subversion UUID for repo. Will run full scan: "+this.getName());
return fullScan(targetRevision);
}
if (targetRevision>current.getRevision()) {
return deltaScan(current,targetRevision);
}
return current;
} catch (Exception e) {
if (!relaxing(e)) {
throw new RuntimeException(e);
}
}
return null;
}

Also available in: Atom PDF