Displaying 1 result from an estimated 1 matches for "parentvolum".
Did you mean:
parentvolume
2009 Jun 25
0
[PATCH] Extend timeouts on libvirt calls.
...== 0
# Refresh qpid object with new properties.
diff --git a/src/task-omatic/taskomatic.rb b/src/task-omatic/taskomatic.rb
index 6e21160..b3c0592 100755
--- a/src/task-omatic/taskomatic.rb
+++ b/src/task-omatic/taskomatic.rb
@@ -258,14 +258,14 @@ class TaskOmatic
# libvirt-qpid sets parentVolume to the name of the parent volume
# if this is an LVM pool, else it leaves it empty.
if pool.parentVolume != ''
- result = pool.destroy
- result = pool.undefine
+ result = pool.destroy(:timeout => 60 * 2)
+ result = pool.undefine(:timeout => 6...