I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 2bc6b384 authored by dev's avatar dev
Browse files

decrease entry number size

parent 13d9fee7
No related branches found
No related tags found
No related merge requests found
...@@ -30,7 +30,7 @@ def app(environ, start_response): ...@@ -30,7 +30,7 @@ def app(environ, start_response):
if len(entries) > 150: if len(entries) > 150:
# select some randomly # select some randomly
new = [] new = []
for i in range(100): for i in range(50):
while True: while True:
sel = choice(entries) sel = choice(entries)
if not sel.startswith('routerInfo-'): if not sel.startswith('routerInfo-'):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment