Bug 706232
Summary: | odd error when looking at current group config | ||
---|---|---|---|
Product: | [Other] RHQ Project | Reporter: | John Mazzitelli <mazz> |
Component: | Core Server | Assignee: | Charles Crouch <ccrouch> |
Status: | CLOSED CURRENTRELEASE | QA Contact: | Mike Foley <mfoley> |
Severity: | medium | Docs Contact: | |
Priority: | medium | ||
Version: | 4.0.0 | CC: | hbrock, hrupp, skondkar |
Target Milestone: | --- | ||
Target Release: | --- | ||
Hardware: | Unspecified | ||
OS: | Unspecified | ||
Whiteboard: | |||
Fixed In Version: | Doc Type: | Bug Fix | |
Doc Text: | Story Points: | --- | |
Clone Of: | Environment: | ||
Last Closed: | 2013-09-03 16:57:57 UTC | Type: | --- |
Regression: | --- | Mount Type: | --- |
Documentation: | --- | CRM: | |
Verified Versions: | Category: | --- | |
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
Cloudforms Team: | --- | Target Upstream Version: | |
Embargoed: | |||
Bug Depends On: | |||
Bug Blocks: | 678340, 705059, 715334 |
Description
John Mazzitelli
2011-05-19 20:11:37 UTC
ConfigurationManagerBean. this is caused here: // If the live config is different than the persisted config, persist it as the new current config. ResourceConfigurationUpdate update = persistNewAgentReportedResourceConfiguration(memberResource, liveConfig); if (update != null) currentPersistedConfigs.put(memberResource.getId(), update.getConfiguration()); else log.error("Current Configuration for " + memberResource + " does not match latest associated ResourceConfigurationUpdate with SUCCESS status."); } The result of that call to the persist method (i.e "update" value), is null because of this: // If this update is not part of an group update, don't bother persisting a new entry if the Configuration // hasn't changed. If it's part of an group update, persist a new entry no matter what, so the group // update isn't missing any member updates. if (!isPartofGroupUpdate && current != null && newConfiguration.equals(current.getConfiguration())) { return null; } I was seeing this too, but ever since the fix for bug #706193 went in, I am no longer able to reproduce it. Switching to ON_QA - if QE can reproduce it and provide better reproduction steps, I will look at it again. Verified on build#97 (Version: 4.1.0-SNAPSHOT Build Number: e89bbe0) Created a compatible group of rhq agents and navigated to the configuration tab of the group. The error is not displayed. Also set an unset property and saved the group config. after group config update success, there is no such error in server log. Marking as verified. Bulk closing of old issues that are in VERIFIED state. |