Remove unused CI func

This commit is contained in:
Abraham Gonzalez 2022-04-22 03:38:37 +00:00
parent e798e7955b
commit c06feb9124
1 changed files with 0 additions and 10 deletions

View File

@ -53,16 +53,6 @@ def get_manager_instance(tag_value):
else:
return None
def get_manager_instance_id(tag_value):
""" Looks up the manager instance ID using the CI workflow run's unique tag"""
manager = get_manager_instance(tag_value)
if manager is None:
print("No manager instance running with tag matching the assigned workflow id\n")
sys.exit(1)
else:
return manager['InstanceId']
def get_manager_ip(tag_value):
""" Looks up the manager IP using the CI workflow run's unique tag"""