1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2025-07-31 12:41:08 +00:00

Add fixtures

This commit is contained in:
Retspen 2015-02-27 15:56:10 +02:00
parent 2ed6ca6518
commit cbba654538
7 changed files with 122 additions and 3 deletions

View file

@ -24,6 +24,7 @@ INSTALLED_APPS = (
'computes',
'instances',
'accounts',
'create',
)
MIDDLEWARE_CLASSES = (
@ -85,4 +86,8 @@ WS_CERT = None
QEMU_CONSOLE_TYPES = ['vnc', 'spice']
# default console type
QEMU_CONSOLE_DEFAULT_TYPE = 'vnc'
QEMU_CONSOLE_DEFAULT_TYPE = 'vnc'
# keepalive interval and count for libvirt connections
LIBVIRT_KEEPALIVE_INTERVAL = 5
LIBVIRT_KEEPALIVE_COUNT = 5