Skip to content

Commit

Permalink
Modified expiration date to 365 days (#82)
Browse files Browse the repository at this point in the history
  • Loading branch information
kuldeepkk-dev authored Dec 4, 2023
1 parent bb9ff0a commit c2db77b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_image_utils/expiration_notifier.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def notify(args):
_LOG.info("Successfully built Dataproc custom image: %s", args.image_name)
creation_date = _parse_date_time(
_get_image_creation_timestamp(args.image_name, args.project_id))
expiration_date = creation_date + datetime.timedelta(days=60)
expiration_date = creation_date + datetime.timedelta(days=365)
_LOG.info(
_expiration_notification_text.format(args.image_name,
str(expiration_date)))
Expand Down

0 comments on commit c2db77b

Please sign in to comment.