Remove after = [Connect] from CreateVolume.

Connect & CreateVolume do not run in the same phase,
so the order is a given.
This commit is contained in:
Anders Ingemann 2013-07-09 20:24:08 +02:00
parent 2355965d07
commit 1acd86a85a

View file

@ -1,14 +1,12 @@
from base import Task from base import Task
from common import phases from common import phases
from common.exceptions import TaskError from common.exceptions import TaskError
from connection import Connect
from filesystem import UnmountVolume from filesystem import UnmountVolume
import time import time
class CreateVolume(Task): class CreateVolume(Task):
phase = phases.volume_creation phase = phases.volume_creation
after = [Connect]
description = 'Creating an EBS volume for bootstrapping' description = 'Creating an EBS volume for bootstrapping'