Skip to content

Commit

Permalink
removed ignore_missing param
Browse files Browse the repository at this point in the history
  • Loading branch information
dweinholz committed Oct 10, 2024
1 parent ce6932b commit c1f6081
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1109,7 +1109,7 @@ def get_or_create_research_environment_security_group(
def get_security_group_id_by_name(self, security_group_name):
logger.info(f"Get Security Group ID by name: {security_group_name}")
sec = self.openstack_connection.get_security_group(
ignore_missing=False, name_or_id=security_group_name
name_or_id=security_group_name
)
logger.info(f"Got Keypair: {sec}")
if not sec:
Expand Down

0 comments on commit c1f6081

Please sign in to comment.