Skip to content

Commit f1b3299

Browse files
Merge pull request #132 from jinyoungmoonDEV/master
fix: fix display port
2 parents ec3fcbc + 4efd475 commit f1b3299

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,6 @@ def request_target_group_data(self, region_name):
9292
match_tags = self.search_tags(all_tags, raw_tg.get("TargetGroupArn"))
9393
raw_tg.update(
9494
{
95-
"port_display": str(raw_tg.get("Port")),
9695
"region_name": region_name,
9796
"cloudtrail": self.set_cloudtrail(
9897
region_name,

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ class TargetGroup(AWSCloudService):
202202
choices=("HTTP", "HTTPS", "TCP", "TLS", "UDP", "TCP_UDP"),
203203
)
204204
port = IntType(deserialize_from="Port")
205-
port_display = StringType(deserialize_from="port_display")
205+
port_display = StringType(deserialize_from="Port")
206206
vpc_id = StringType(deserialize_from="VpcId")
207207
health_check_protocol = StringType(
208208
deserialize_from="HealthCheckProtocol",

0 commit comments

Comments
 (0)