Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 311563 Details for
Bug 238833
Error: Device 0 not connected
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
Ignore errors fetching SXPR from individual domains which are shutting down
xen-xend-list-domains-err.patch (text/plain), 909 bytes, created by
Daniel Berrangé
on 2008-07-11 11:24:49 UTC
(
hide
)
Description:
Ignore errors fetching SXPR from individual domains which are shutting down
Filename:
MIME Type:
Creator:
Daniel Berrangé
Created:
2008-07-11 11:24:49 UTC
Size:
909 bytes
patch
obsolete
>diff -rup xen-3.1.0-src.orig/tools/python/xen/xend/server/XMLRPCServer.py xen-3.1.0-src.new/tools/python/xen/xend/server/XMLRPCServer.py >--- xen-3.1.0-src.orig/tools/python/xen/xend/server/XMLRPCServer.py 2008-07-10 05:41:58.000000000 -0400 >+++ xen-3.1.0-src.new/tools/python/xen/xend/server/XMLRPCServer.py 2008-07-11 07:13:49.000000000 -0400 >@@ -58,7 +58,14 @@ def domains(detail=1): > return XendDomain.instance().list_names() > else: > domains = XendDomain.instance().list_sorted() >- return map(lambda dom: fixup_sxpr(dom.sxpr()), domains) >+ ret = [] >+ for dom in domains: >+ try: >+ ret.append(fixup_sxpr(dom.sxpr())) >+ except: >+ log.warn("Failed to query SXPR for domain %s" % str(dom)) >+ pass >+ return ret > > def domain_create(config): > info = XendDomain.instance().domain_create(config)
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 238833
:
154013
| 311563