Comment 1 for bug 725328

Revision history for this message
Christian Berendt (berendt) wrote :

I tested creation and deletion several times with the following script and got no issues. So it's probably a problem with the detaching of a volume.

---snip---
#!/bin/sh

for i in $(seq 1 30); do
  euca-create-volume -s 1 -z nova
done

sleep 30

for i in $(euca-describe-volumes | cut -f 2); do
  euca-delete-volume $i
done
---snap---