# HG changeset patch # User iap10@labyrinth.cl.cam.ac.uk # Date 1107825410 0 # Node ID d683070e3e971493f625dfb6abb3d15ca49f1bb4 # Parent d2e0edbc060db750fbc276731c9e74e58440201d bitkeeper revision 1.1159.223.78 (42081302-eWxmHBN6T8FdRJD5VvsOg) This very simple patch is really just cosmetic. It "fixes" xend so that it doesn't report restart as: "WARNING (XendDomainInfo:1038) Unknown config field restart" in the xend.log. I'm not sure who should sign off on this, but the patch is attached. From: "B.G. Bruce" Signed-off-by: ian@xensource.com diff -r d2e0edbc060d -r d683070e3e97 tools/python/xen/xend/XendDomainInfo.py --- a/tools/python/xen/xend/XendDomainInfo.py Mon Feb 07 19:11:33 2005 +0000 +++ b/tools/python/xen/xend/XendDomainInfo.py Tue Feb 08 01:16:50 2005 +0000 @@ -1227,6 +1227,7 @@ add_config_handler('memory', vm_fiel add_config_handler('cpu', vm_field_ignore) add_config_handler('cpu_weight', vm_field_ignore) add_config_handler('console', vm_field_ignore) +add_config_handler('restart', vm_field_ignore) add_config_handler('image', vm_field_ignore) add_config_handler('device', vm_field_ignore) add_config_handler('backend', vm_field_ignore)