Displaying 6 results from an estimated 6 matches for "dest_uri".
Did you mean:
test_uri
2017 Aug 03
2
proxy-dict with tcp connection
...n_init_client_unix with connection_init_client_ip:
--- ./src/lib-dict/dict-client.c.orig
+++ ./src/lib-dict/dict-client.c
@@ -721,6 +721,10 @@ client_dict_init(struct dict *driver, const char *uri,
struct ioloop *old_ioloop = current_ioloop;
struct client_dict *dict;
const char *p, *dest_uri, *path;
+ const char *const *args;
+ unsigned int argc;
+ struct ip_addr ip;
+ in_port_t port=0;
unsigned int idle_msecs = DICT_CLIENT_DEFAULT_TIMEOUT_MSECS;
unsigned int warn_slow_msecs = DICT_CLIENT_DEFAULT_WARN_SLOW_MSECS;
@@ -772,7 +776,21 @@ client_dict_init(struct dict...
2010 Aug 18
1
[PATCH] Setting the migration timeout to 3 minutes
...tic/taskomatic.rb | 2 +-
1 files 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_ur...
2010 Feb 16
1
[PATCH] Increase timeout for live migration
...tic/taskomatic.rb | 2 +-
1 files 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_ur...
2017 Aug 03
0
proxy-dict with tcp connection
...init_client_ip:
>
> --- ./src/lib-dict/dict-client.c.orig
> +++ ./src/lib-dict/dict-client.c
> @@ -721,6 +721,10 @@ client_dict_init(struct dict *driver, const char *uri,
> struct ioloop *old_ioloop = current_ioloop;
> struct client_dict *dict;
> const char *p, *dest_uri, *path;
> + const char *const *args;
> + unsigned int argc;
> + struct ip_addr ip;
> + in_port_t port=0;
> unsigned int idle_msecs = DICT_CLIENT_DEFAULT_TIMEOUT_MSECS;
> unsigned int warn_slow_msecs = DICT_CLIENT_DEFAULT_WARN_SLOW_MSECS;
>
> @@ -772,7...
2009 Jun 25
0
[PATCH] Extend timeouts on libvirt calls.
...ne(:timeout => 60 * 2)
end
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...
2009 May 28
0
[PATCH server] Use qpid for migration and add more debugging to taskomatic.
...//" + dest_node.hostname + "/system")
- dom = src_conn.lookup_domain_by_uuid(vm.uuid)
- dom.migrate(dst_conn, Libvirt::Domain::MIGRATE_LIVE)
- src_conn.close
- dst_conn.close
+ src_uri = "qemu+tcp://" + src_node.hostname + "/system"
+ 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)
+ @logger.error "Error mi...