Skip to content

Commit

Permalink
Merge pull request #28210 from votdev/fix_rgw_issue
Browse files Browse the repository at this point in the history
mimic: mgr/dashboard: Fix various RGW issues

Reviewed-by:  Tiago Melo <tmelo@suse.com>
  • Loading branch information
yuriw committed Jul 24, 2019
2 parents c80a612 + a4558ba commit efd2f2f
Show file tree
Hide file tree
Showing 17 changed files with 491 additions and 81 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Expand Up @@ -61,3 +61,5 @@ GTAGS

# editor backup files etc.
\#*\#

.idea
3 changes: 3 additions & 0 deletions qa/tasks/mgr/dashboard/helper.py
Expand Up @@ -95,6 +95,9 @@ def _request(cls, url, method, data=None, params=None):
else:
assert False
try:
if not cls._resp.ok:
# Output response for easier debugging.
log.error("Request response: %s", cls._resp.text)
if cls._resp.text and cls._resp.text != "":
return cls._resp.json()
return cls._resp.text
Expand Down

0 comments on commit efd2f2f

Please sign in to comment.