Skip to content

Commit

Permalink
fix program cname value
Browse files Browse the repository at this point in the history
  • Loading branch information
aliel committed Sep 6, 2023
1 parent 3b8038c commit 17603a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/aleph/sdk/domain.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def get_required_dns_rules(self, url, target, owner: Optional[str] = None):
if target == "ipfs":
cname_value = settings.DNS_IPFS_DOMAIN
elif target == "program":
cname_value = settings.DNS_PROGRAM_DOMAIN
cname_value = f"{domain}.{settings.DNS_PROGRAM_DOMAIN}"
elif target == "instance":
cname_value = f"{domain}.{settings.DNS_INSTANCE_DOMAIN}"

Expand Down

0 comments on commit 17603a1

Please sign in to comment.