search for: dest_node

Displaying 7 results from an estimated 7 matches for "dest_node".

Did you mean: dest_mode
2008 Mar 16
8
include a page in another
Hi, for my isbn plugin, I''m wishing to incldue generated isbn pages in caller pages (the ones with <isbn value=""> tags). But I want my isbn page to be processed before for its tags to be transformed (like the relocatable or other ones). Besides, i do not want its header to be included. Is there an easy solution for that, or should I do the work myself ? -- Nicolas
2009 May 28
0
[PATCH server] Use qpid for migration and add more debugging to taskomatic.
....to_s) raise "Error defining virtual machine: #{result.text}" unless result.status == 0 @@ -506,17 +525,18 @@ class TaskOmatic volumes = [] volumes += db_vm.storage_volumes + @logger.debug("Connecting volumes: #{volumes}") connect_storage_pools(dest_node, volumes) # Sadly migrate with qpid is broken because it requires a connection between # both nodes and currently that can't happen securely. For now we do it # the old fashioned way.. - src_conn = Libvirt::open("qemu+tcp://" + src_node.hostname + "/s...
2010 Aug 18
1
[PATCH] Setting the migration timeout to 3 minutes
...changed, 1 insertions(+), 1 deletions(-) diff --git a/src/task-omatic/taskomatic.rb b/src/task-omatic/taskomatic.rb index 7de725d..0314e6a 100755 --- a/src/task-omatic/taskomatic.rb +++ b/src/task-omatic/taskomatic.rb @@ -548,7 +548,7 @@ class TaskOmatic dest_uri = "qemu+tcp://" + dest_node.hostname + "/system" @logger.debug("Migrating from #{src_uri} to #{dest_uri}") - result = vm.migrate(dest_uri, Libvirt::Domain::MIGRATE_LIVE, '', '', 0, :timeout => 60 * 50) + result = vm.migrate(dest_uri, Libvirt::Domain::MIGRATE_LIVE, '...
2010 Feb 16
1
[PATCH] Increase timeout for live migration
...changed, 1 insertions(+), 1 deletions(-) diff --git a/src/task-omatic/taskomatic.rb b/src/task-omatic/taskomatic.rb index be244c9..c0a56b8 100755 --- a/src/task-omatic/taskomatic.rb +++ b/src/task-omatic/taskomatic.rb @@ -548,7 +548,7 @@ class TaskOmatic dest_uri = "qemu+tcp://" + dest_node.hostname + "/system" @logger.debug("Migrating from #{src_uri} to #{dest_uri}") - result = vm.migrate(dest_uri, Libvirt::Domain::MIGRATE_LIVE, '', '', 0, :timeout => 60 * 10) + result = vm.migrate(dest_uri, Libvirt::Domain::MIGRATE_LIVE, '...
2009 Jun 25
0
[PATCH] Extend timeouts on libvirt calls.
...end pools.each do |pool| - result = pool.destroy - result = pool.undefine + result = pool.destroy(:timeout => 60 * 2) + result = pool.undefine(:timeout => 60 * 2) end end @@ -534,7 +534,7 @@ class TaskOmatic dest_uri = "qemu+tcp://" + dest_node.hostname + "/system" @logger.debug("Migrating from #{src_uri} to #{dest_uri}") - result = vm.migrate(dest_uri, Libvirt::Domain::MIGRATE_LIVE, '', '', 0, :timeout => 60 * 4) + result = vm.migrate(dest_uri, Libvirt::Domain::MIGRATE_LIVE, '...
2009 Nov 04
4
[PATCH server] Update daemons to use new QMF.
...qmfc.object(:object_id => vm.node) raise "Unable to find node that VM is on??" unless src_node @logger.info "Migrating domain lookup complete, domain is #{vm}" @@ -528,7 +533,7 @@ class TaskOmatic db_dst_host = find_capable_host(db_vm) end - dest_node = @session.object(:class => 'node', 'hostname' => db_dst_host.hostname) + dest_node = @qmfc.object(:class => 'node', 'hostname' => db_dst_host.hostname) raise "Unable to find host #{db_dst_host.hostname} to migrate to." unless dest_n...
2010 Feb 15
29
webgen 0.5.11 released
...roduce completely valid feeds - Fixed order of feed entries (now sorted from most recent to oldest) (reported by Tuomo Valkonen) - Fixed error in `SourceHandler::Virtual` when creating virtual directories (reported by Tuomo Valkonen) - Fixed bug in `ContentProcessor::Blocks`: `context.dest_node` was not correctly set when `#render_block` was called via the context object - Fixed bug in `Sourcehandler::Main`: an error was raised when the configuration option `output.do_deletion` was set to `true` (reported by Thomas Deselaers) - Fixed RF#27075: Typo in webgen documentat...