Displaying 2 results from an estimated 2 matches for "77363ac".
Did you mean:
70363af
2009 Jun 25
0
[PATCH] Extend timeouts on libvirt calls.
...timeout.
Signed-off-by: Ian Main <imain at redhat.com>
---
src/task-omatic/task_storage.rb | 6 +++---
src/task-omatic/taskomatic.rb | 10 +++++-----
2 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/src/task-omatic/task_storage.rb b/src/task-omatic/task_storage.rb
index 77363ac..8165818 100644
--- a/src/task-omatic/task_storage.rb
+++ b/src/task-omatic/task_storage.rb
@@ -132,7 +132,7 @@ class LibvirtPool
if @remote_pool == nil
@logger.debug("Defining new storage pool: #{@xml.to_s} on host: #{node.hostname}")
- result = node.storagePoolDefineX...
2009 Jul 09
1
[PATCH 1/5 ovirt-server] Add glusterfs to task-omatic API for {task_storage,utils}
---
src/task-omatic/task_storage.rb | 50 +++++++++++++++++++++++++++++++++++++++
src/task-omatic/utils.rb | 40 +++++++++++++++++++++++++++++++
2 files changed, 90 insertions(+), 0 deletions(-)
diff --git a/src/task-omatic/task_storage.rb b/src/task-omatic/task_storage.rb
index 77363ac..97ae4fc 100644
--- a/src/task-omatic/task_storage.rb
+++ b/src/task-omatic/task_storage.rb
@@ -202,6 +202,8 @@ class LibvirtPool
return IscsiLibvirtPool.new(pool.ip_addr, pool[:target], pool[:port], logger)
elsif pool[:type] == "NfsStoragePool"
return NFSLibvirtPool.ne...