Implement indexing into Apache Druid #1

Closed
m wants to merge 263 commits from druid into master
1 changed files with 3 additions and 0 deletions
Showing only changes of commit ab9b0a1c9f - Show all commits

View File

@ -256,6 +256,9 @@ class API(object):
return dumps({"success": False, "reason": "invalid chanlimit: not a number."})
else:
chanlimit = int(chanlimit)
online_relays = helpers.get_active_relays(net)
for inst in online_relays:
inst.chanlimit = chanlimit
elif item == "security":
security = data[item][0]
if security not in ["ssl", "plain"]: