mirror of
https://github.com/libvirt/libvirt.git
synced 2025-02-25 18:55:26 -06:00
* src/xend_internal.c: when getting informations about a non
existant domain, it is not a good idea to raise the HTTP 404 GET error, the handling is better done somewhere up in the stack. Daniel
This commit is contained in:
parent
9e5645393e
commit
4a9ce62fe9
@ -1,3 +1,10 @@
|
|||||||
|
Tue Oct 31 10:31:34 CET 2006 Daniel Veillard <veillard@redhat.com>
|
||||||
|
|
||||||
|
* src/xend_internal.c: when getting informations about a non
|
||||||
|
existant domain, it is not a good idea to raise the HTTP
|
||||||
|
404 GET error, the handling is better done somewhere up in
|
||||||
|
the stack.
|
||||||
|
|
||||||
Tue Oct 24 15:31:23 EDT 2006 Daniel P.Berrange <berrange@redhat.com>
|
Tue Oct 24 15:31:23 EDT 2006 Daniel P.Berrange <berrange@redhat.com>
|
||||||
|
|
||||||
* python/generator.py, python/libvir.c: Drop python interpreter
|
* python/generator.py, python/libvir.c: Drop python interpreter
|
||||||
|
12
NEWS
12
NEWS
@ -5,6 +5,18 @@
|
|||||||
http://libvirt.org/news.html
|
http://libvirt.org/news.html
|
||||||
|
|
||||||
Releases
|
Releases
|
||||||
|
0.1.8: Oct 16 2006:
|
||||||
|
- Bug for system with page size != 4k
|
||||||
|
- vcpu number initialization (Philippe Berthault)
|
||||||
|
- don't label crashed domains as shut off (Peter Vetere)
|
||||||
|
- fix virsh man page (Noriko Mizumoto)
|
||||||
|
- blktapdd support for alternate drivers like blktap (Daniel Berrange)
|
||||||
|
- memory leak fixes (xend interface and XML parsing) (Daniel Berrange)
|
||||||
|
- compile fix
|
||||||
|
- mlock/munlock size fixes (Daniel Berrange)
|
||||||
|
- improve error reporting
|
||||||
|
|
||||||
|
|
||||||
0.1.7: Sep 29 2006:
|
0.1.7: Sep 29 2006:
|
||||||
- fix a memory bug on getting vcpu informations from xend (Daniel Berrange)
|
- fix a memory bug on getting vcpu informations from xend (Daniel Berrange)
|
||||||
- fix another problem in the hypercalls change in Xen changeset
|
- fix another problem in the hypercalls change in Xen changeset
|
||||||
|
@ -4,6 +4,14 @@
|
|||||||
language is requested. */
|
language is requested. */
|
||||||
#undef ENABLE_NLS
|
#undef ENABLE_NLS
|
||||||
|
|
||||||
|
/* Define to 1 if you have the MacOS X function CFLocaleCopyCurrent in the
|
||||||
|
CoreFoundation framework. */
|
||||||
|
#undef HAVE_CFLOCALECOPYCURRENT
|
||||||
|
|
||||||
|
/* Define to 1 if you have the MacOS X function CFPreferencesCopyAppValue in
|
||||||
|
the CoreFoundation framework. */
|
||||||
|
#undef HAVE_CFPREFERENCESCOPYAPPVALUE
|
||||||
|
|
||||||
/* Define if the GNU dcgettext() function is already present or preinstalled.
|
/* Define if the GNU dcgettext() function is already present or preinstalled.
|
||||||
*/
|
*/
|
||||||
#undef HAVE_DCGETTEXT
|
#undef HAVE_DCGETTEXT
|
||||||
|
@ -444,7 +444,8 @@ xend_get(virConnectPtr xend, const char *path,
|
|||||||
ret = xend_req(s, content, n_content);
|
ret = xend_req(s, content, n_content);
|
||||||
close(s);
|
close(s);
|
||||||
|
|
||||||
if ((ret < 0) || (ret >= 300)) {
|
if (((ret < 0) || (ret >= 300)) &&
|
||||||
|
((ret != 404) || (strncmp(path, "/xend/domain/", 13)))) {
|
||||||
virXendError(NULL, VIR_ERR_GET_FAILED, content);
|
virXendError(NULL, VIR_ERR_GET_FAILED, content);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user