Skip to content

Commit 1c52cb4

Browse files
Merge pull request #149 from jinyoungmoonDEV/master
fix: fix describe listener rule join error
2 parents ee99402 + 9c57bda commit 1c52cb4

File tree

1 file changed

+1
-1
lines changed
  • src/spaceone/inventory/connector/aws_elb_connector

1 file changed

+1
-1
lines changed

src/spaceone/inventory/connector/aws_elb_connector/connector.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ def get_formatted_conditions(raw_conditions: list, is_default: bool) -> list:
290290

291291
for condition in raw_conditions:
292292
field = condition.get("Field")
293-
values = ','.join(condition.get("Values"))
293+
values = ','.join(condition.get("Values", []))
294294

295295
str_conditions.append(f"{field} : {values}")
296296

0 commit comments

Comments
 (0)