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 188091 Details for
Bug 279581
xm start raises 'TypeError: int argument required'
[?]
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]
Fix including xen/xend/image.py
xen-qemu-vncdisplay-fix.patch (text/plain), 1.30 KB, created by
Eduardo Habkost
on 2007-09-05 22:24:23 UTC
(
hide
)
Description:
Fix including xen/xend/image.py
Filename:
MIME Type:
Creator:
Eduardo Habkost
Created:
2007-09-05 22:24:23 UTC
Size:
1.30 KB
patch
obsolete
>Index: xen-3.1.0-src/tools/python/xen/xend/server/vfbif.py >=================================================================== >--- xen-3.1.0-src.orig/tools/python/xen/xend/server/vfbif.py >+++ xen-3.1.0-src/tools/python/xen/xend/server/vfbif.py >@@ -74,7 +74,7 @@ class VfbifController(DevController): > > vnclisten = config.get('vnclisten', > xen.xend.XendOptions.instance().get_vnclisten_address()) >- vncdisplay = config.get('vncdisplay', 0) >+ vncdisplay = int(config.get('vncdisplay', 0)) > args += ['-vnc', "%s:%d%s" % (vnclisten, vncdisplay, vncopts)] > > if config.get('vncunused', 0): >Index: xen-3.1.0-src/tools/python/xen/xend/image.py >=================================================================== >--- xen-3.1.0-src.orig/tools/python/xen/xend/image.py >+++ xen-3.1.0-src/tools/python/xen/xend/image.py >@@ -402,7 +402,7 @@ class HVMImageHandler(ImageHandler): > > vnclisten = vnc_config.get('vnclisten', > XendOptions.instance().get_vnclisten_address()) >- vncdisplay = vnc_config.get('vncdisplay', 0) >+ vncdisplay = int(vnc_config.get('vncdisplay', 0)) > ret.append('-vnc') > ret.append("%s:%d%s" % (vnclisten, vncdisplay, vncopts)) >
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 279581
:
188051
| 188091