Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Apr 27, 2023
1 parent 227ebd5 commit 2ce97bf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions code/ddns-lambda.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
LOGGER = logging.getLogger()
account_id = None
region = None
VERSION = '1.2.0b66'
VERSION = '1.2.0b67'

# Read Env variables
DEBUG_LOG_LEVEL = os.environ.get('DebugLogLevel', 'INFO')
Expand Down Expand Up @@ -2776,7 +2776,9 @@ def publish_to_sns(client, message):
def new_process_delete_records(instance_id, zone_id, record_name, zone_name, record_type, record_value, heritage_value):
LOGGER.info(
f"new delete records: instance {instance_id}, zone_id {zone_id}, name {record_name} zone_name {zone_name} type {record_type} value {record_value} heritage {heritage_value}")
return
process_response = process_delete_records(
route53, instance_id, zone_id, record_name, zone_name, record_type, record_value, heritage_value)
return process_response


def process_delete_records(route53, instance_id, zone_id,
Expand Down
Binary file modified code/ddns-lambda.zip
Binary file not shown.

0 comments on commit 2ce97bf

Please sign in to comment.