| Summary: | MergingTest fails occasionally on Hudson | ||
|---|---|---|---|
| Product: | [Modeling] EMF | Reporter: | Eike Stepper <stepper> |
| Component: | cdo.core | Assignee: | Eike Stepper <stepper> |
| Status: | CLOSED FIXED | QA Contact: | |
| Severity: | normal | ||
| Priority: | P3 | ||
| Version: | 3.0 | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows 7 | ||
| Whiteboard: | |||
|
Description
Eike Stepper
The following in CDOTransactionImpl.merge() turned out to be too unexact (an approximation):
long now = session.getRepositoryInfo().getTimeStamp();
This is better:
long now = getLastUpdateTime();
getLastUpdateTime() was introduced to CDOViewImpl by bug 314544.
Committed to HEAD Available in 3.0 GA: http://download.eclipse.org/modeling/emf/cdo/updates/3.0-releases/ |