Implement indexing into Apache Druid #1

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

View File

@ -96,7 +96,8 @@ def registerAccount(net, num):
def confirmAccount(net, num, token): def confirmAccount(net, num, token):
sinst = substitute(net, num, token=token) sinst = substitute(net, num, token=token)
name = net + str(num) name = net + str(num)
main.IRCPool[name].msg(sinst["entity"], sinst["confirm"]) if name in main.IRCPool:
main.IRCPool[name].msg(sinst["entity"], sinst["confirm"])
enableAuthentication(net, num) enableAuthentication(net, num)