Commit b2fbb79f authored by Romain Courteaud's avatar Romain Courteaud

Reduce status noise

parent 0216bd84
...@@ -149,7 +149,8 @@ class WebBot: ...@@ -149,7 +149,8 @@ class WebBot:
continue continue
if server_ip not in server_ip_dict: if server_ip not in server_ip_dict:
server_ip_dict[server_ip] = [] server_ip_dict[server_ip] = []
server_ip_dict[server_ip].append(dns_change["domain"]) if dns_change["domain"] not in server_ip_dict[server_ip]:
server_ip_dict[server_ip].append(dns_change["domain"])
# Report the list of CDN status # Report the list of CDN status
query = reportNetwork( query = reportNetwork(
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment