Skip to content

Commit fc871f5

Browse files
evanpurkhisermifu67
authored andcommitted
fix(uptime): Correct comment of url_domain_suffix (#77346)
There's no leading dot for the suffix
1 parent b42cd9d commit fc871f5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/sentry/uptime/models.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ class UptimeSubscription(BaseRemoteSubscription, DefaultFieldsModelExisting):
2626
url = models.CharField(max_length=255)
2727
# The domain of the url, extracted via TLDExtract
2828
url_domain = models.CharField(max_length=255, db_index=True, default="")
29-
# The suffix of the url, extracted via TLDExtract. This can be a public suffix, such as .com, .gov.uk, .com.au, or
30-
# a private suffix, such as vercel.dev
29+
# The suffix of the url, extracted via TLDExtract. This can be a public
30+
# suffix, such as com, gov.uk, com.au, or a private suffix, such as vercel.dev
3131
url_domain_suffix = models.CharField(max_length=255, db_index=True, default="")
3232
# Org name of the host of the url
3333
host_whois_orgname = models.CharField(max_length=255, db_index=True, default="")

0 commit comments

Comments
 (0)