Skip to content

Commit

Permalink
Don't keep expired records (#29)
Browse files Browse the repository at this point in the history
* Switch bool

* Version bump too
  • Loading branch information
aaomidi authored Mar 21, 2023
1 parent b6be10e commit 977c87e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion certbot_dns_google_domains/dns_google_domains.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def _perform(self, domain: str, validation_name: str, validation: str) -> None:
gds_api = self._get_gds_api()
record_add = AcmeTxtRecord(validation_name, validation)
rotate_req = RotateChallengesRequest(
self.access_token, [record_add], None, True)
self.access_token, [record_add], None, False)

zone = self._get_zone(
domain, self.zone_from_credentials, self.conf('zone'), self.psl)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "certbot-dns-google-domains"
version = "0.1.7"
version = "0.1.8"
description = "Certbot DNS authenticator for Google Domains"
authors = ["Amir Omidi <amir@aaomidi.com>"]
license = "Apache 2.0"
Expand Down

0 comments on commit 977c87e

Please sign in to comment.