Note: This bug is displayed in read-only format because
the product is no longer active in Red Hat Bugzilla.
Red Hat Satellite engineering is moving the tracking of its product development work on Satellite to Red Hat Jira (issues.redhat.com). If you're a Red Hat customer, please continue to file support cases via the Red Hat customer portal. If you're not, please head to the "Satellite project" in Red Hat Jira and file new tickets here. Individual Bugzilla bugs will be migrated starting at the end of May. If you cannot log in to RH Jira, please consult article #7032570. That failing, please send an e-mail to the RH Jira admins at rh-issues@redhat.com to troubleshoot your issue as a user management inquiry. The email creates a ServiceNow ticket with Red Hat. Individual Bugzilla bugs that are migrated will be moved to status "CLOSED", resolution "MIGRATED", and set with "MigratedToJIRA" in "Keywords". The link to the successor Jira issue will be found under "Links", have a little "two-footprint" icon next to it, and direct you to the "Satellite project" in Red Hat Jira (issue links are of type "https://issues.redhat.com/browse/SAT-XXXX", where "X" is a digit). This same link will be available in a blue banner at the top of the page informing you that that bug has been migrated.
Description of problem:
PUT request for a compute resource fails with below error message
```
{
"message": "Failed to refresh the cache."
}
```
Version-Release number of selected component (if applicable):
latest master
How reproducible:
Steps to Reproduce:
1.Add a compute resource
2.PUT request for cache refresh
3.
Actual results:
Shown error msg
Expected results:
Should work or give proper error if not implemented
Additional info:
It's not an action that supported in kubevirt compute resource. you can change this BZ to a documentation bug, the documentation should show to which compute resource this call is relevant for.
This might not be just doc bug, when doing this cache refresh call, I get the mentioned error msg, but for other actions, for example
GET https://<foreman>/api/compute_resources/:id/available_storage_domains
I get the following output, which should also come for refresh_cache is it's not implemented
{
"error": {
"message": "ERF42-7329 [Foreman::Exception]: Not implemented for KubeVirt"
}
}
Comment 9Lukáš Hellebrandt
2019-08-07 17:04:36 UTC
Verified with Sat 6.6 snap 11.
Verified that CRs of type Google, RHV and Kubevirt return: "error": {"message":"ERF42-7329 [Foreman::Exception]: Not implemented for <CRtype>"}
Verified that CR of type VMWare returns: "message":"Successfully refreshed the cache."
Since the problem described in this bug report should be
resolved in a recent advisory, it has been closed with a
resolution of ERRATA.
For information on the advisory, and where to find the updated
files, follow the link below.
If the solution does not work for you, open a new bug report.
https://access.redhat.com/errata/RHSA-2019:3172
Description of problem: PUT request for a compute resource fails with below error message ``` { "message": "Failed to refresh the cache." } ``` Version-Release number of selected component (if applicable): latest master How reproducible: Steps to Reproduce: 1.Add a compute resource 2.PUT request for cache refresh 3. Actual results: Shown error msg Expected results: Should work or give proper error if not implemented Additional info: