parent
e40e74d6a2
commit
b9b793f421
File diff suppressed because it is too large
Load Diff
@ -1000,6 +1000,11 @@ class InstanceBackend(object):
|
|||||||
|
|
||||||
return new_reservation
|
return new_reservation
|
||||||
|
|
||||||
|
def run_instances(self):
|
||||||
|
# Logic resides in add_instances
|
||||||
|
# Fake method here to make implementation coverage script aware that this method is implemented
|
||||||
|
pass
|
||||||
|
|
||||||
def start_instances(self, instance_ids):
|
def start_instances(self, instance_ids):
|
||||||
started_instances = []
|
started_instances = []
|
||||||
for instance in self.get_multi_instances_by_id(instance_ids):
|
for instance in self.get_multi_instances_by_id(instance_ids):
|
||||||
|
@ -122,5 +122,10 @@ class STSBackend(BaseBackend):
|
|||||||
self.assumed_roles.append(role)
|
self.assumed_roles.append(role)
|
||||||
return role
|
return role
|
||||||
|
|
||||||
|
def get_caller_identity(self):
|
||||||
|
# Logic resides in responses.py
|
||||||
|
# Fake method here to make implementation coverage script aware that this method is implemented
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
sts_backend = STSBackend()
|
sts_backend = STSBackend()
|
||||||
|
Loading…
Reference in New Issue
Block a user