| Summary: | Plan Verifier results not checked in reconciler | ||
|---|---|---|---|
| Product: | [Eclipse Project] Equinox | Reporter: | DJ Houghton <dj.houghton> |
| Component: | p2 | Assignee: | DJ Houghton <dj.houghton> |
| Status: | RESOLVED FIXED | QA Contact: | |
| Severity: | normal | ||
| Priority: | P3 | ||
| Version: | 3.6.1 | ||
| Target Milestone: | 3.6.2 | ||
| Hardware: | PC | ||
| OS: | Mac OS X - Carbon (unsup.) | ||
| Whiteboard: | |||
|
Description
DJ Houghton
Fixed in R3_6_maintenance branch. Made a modification to the code to be more in line with code elsewhere, and we only fail if there is an error reported. Old code: if (!result.getStatus().isOK()) return result.getStatus(); New code: if (plan.getStatus().getSeverity() == IStatus.ERROR) return plan.getStatus(); |