Skip to content

Commit d510178

Browse files
fix: fix SQS Queue Data Field Error
1 parent f21abd3 commit d510178

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

src/spaceone/inventory/connector/aws_sqs_connector/connector.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def request_data(self, region_name) -> List[QueData]:
5353
if 'RedrivePolicy' in attr:
5454
attr['RedrivePolicy'] = RedrivePolicy(json.loads(attr.get('RedrivePolicy')), strict=False)
5555

56-
result = QueData(attr)
56+
result = QueData(attr, strict=False)
5757
result.region_name = region_name
5858
result.url = que.url
5959
result.cloudwatch = self.set_cloudwatch(cloudwatch_namespace, cloudwatch_dimension_name,

0 commit comments

Comments
 (0)