Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Apr 26, 2023
1 parent dcdb867 commit 02565e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/ddns-lambda.py
Original file line number Diff line number Diff line change
Expand Up @@ -1044,7 +1044,7 @@ def lambda_handler(


def put_instance_dns_data_item(dynamodb_client, DDBNAME, instance_id, dns):
dns_list = [dict(d._asdict) for d in dns]
dns_list = [dict(d._asdict()) for d in dns]
dns_info = json.dumps(dns_list, default=json_serial)

LOGGER.debug(f"put dns data into {instance_id}/dns: {str(dns_info)}: {lineno()}")
Expand Down

0 comments on commit 02565e4

Please sign in to comment.