Skip to content

Commit

Permalink
The server may or may not populate the Record field (#30)
Browse files Browse the repository at this point in the history
* Record can be empty

* Bump version
  • Loading branch information
aaomidi authored Mar 24, 2023
1 parent 977c87e commit 8e2d874
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 @@ -52,7 +52,7 @@ class RotateChallengesRequest(DataClassJsonMixin):
class AcmeChallengeSet(DataClassJsonMixin):
dataclass_json_config = config(letter_case=LetterCase.CAMEL)[
"dataclasses_json"]
record: List[AcmeTxtRecord]
record: Optional[List[AcmeTxtRecord]]


class GDSApi:
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.8"
version = "0.1.9"
description = "Certbot DNS authenticator for Google Domains"
authors = ["Amir Omidi <[email protected]>"]
license = "Apache 2.0"
Expand Down

0 comments on commit 8e2d874

Please sign in to comment.