lint
This commit is contained in:
@@ -103,7 +103,8 @@ class IPBlacklistingResolver(object):
|
||||
ip_address, self._ip_whitelist, self._ip_blacklist
|
||||
):
|
||||
logger.info(
|
||||
"Dropped %s from DNS resolution to %s due to blacklist" % (ip_address, hostname)
|
||||
"Dropped %s from DNS resolution to %s due to blacklist" %
|
||||
(ip_address, hostname)
|
||||
)
|
||||
has_bad_ip = True
|
||||
|
||||
@@ -164,7 +165,8 @@ class BlacklistingAgentWrapper(Agent):
|
||||
ip_address, self._ip_whitelist, self._ip_blacklist
|
||||
):
|
||||
logger.info(
|
||||
"Blocking access to %s because of blacklist. Returning 0 results" % (ip_address,)
|
||||
"Blocking access to %s because of blacklist. Returning 0 results" %
|
||||
(ip_address,)
|
||||
)
|
||||
e = SynapseError(404, "No results found")
|
||||
return defer.fail(Failure(e))
|
||||
|
||||
@@ -335,7 +335,8 @@ class PreviewUrlResource(Resource):
|
||||
|
||||
if isinstance(e, DNSLookupError):
|
||||
# DNS lookup returned no results
|
||||
# Note: This will also be the case if the found IP address is blacklisted
|
||||
# Note: This will also be the case if the found IP address
|
||||
# is blacklisted
|
||||
raise SynapseError(
|
||||
404, "No results found", Codes.UNKNOWN
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user