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 5229b25 commit 45e5f37
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion code/ddns-lambda.py
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,8 @@ def lambda_handler(
instance_data = json.loads(instance)
LOGGER.info(f"getting _DnsEntries {lineno()}")
dns_data_raw = instance_data.get('_DnsEntries', [])
LOGGER.info(f"got _DnsEntries type {type(dns_data_raw}) value {dns_data_raw} {lineno()}")
LOGGER.info(
f"got _DnsEntries type {type(dns_data_raw)} value {dns_data_raw} {lineno()}")
dns_data = [dns_data_tuple(**item) for item in dns_data_raw]
LOGGER.info(f"converted _DnsEntries to namdtuples {dns_data} {lineno()}")
LOGGER.info(
Expand Down
Binary file modified code/ddns-lambda.zip
Binary file not shown.

0 comments on commit 45e5f37

Please sign in to comment.