Skip to content

Commit

Permalink
Drop intended verification changes
Browse files Browse the repository at this point in the history
As discussed internally there are some edge cases where this
would require unreasonable changes on the server owner's part
  • Loading branch information
sfan5 committed Feb 17, 2025
1 parent cd0f2a5 commit f71be0a
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions server.py
Original file line number Diff line number Diff line change
Expand Up @@ -454,13 +454,8 @@ def asyncFinishThread(server):
if isDomain(server["address"]):
err += " (valid: %s)" % " ".join(addresses)
app.logger.warning(err)
if isDomain(server["address"]):
# handle as warning
err += "\nThis will become a strict requirement in Nov 2024. You may have to set bind_address."
errorTracker.put(getErrorPK(server), (True, err))
else:
errorTracker.put(getErrorPK(server), (False, err))
return
# handle as warning
errorTracker.put(getErrorPK(server), (True, err))

geo = geoip_lookup_continent(info[-1][4][0])
if geo:
Expand Down

0 comments on commit f71be0a

Please sign in to comment.