Implement indexing into Apache Druid #1

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

View File

@ -18,7 +18,7 @@ import main
from core.relay import sendRelayNotification from core.relay import sendRelayNotification
from modules import chankeep, counters, helpers, monitor, regproc, userinfo from modules import chankeep, counters, helpers, monitor, regproc, userinfo
from utils.dedup import dedup from utils.dedup import dedup
from utils.logging.debug import debug from utils.logging.debug import debug, trace
from utils.logging.log import error, log, warn from utils.logging.log import error, log, warn
from utils.logging.send import sendAll from utils.logging.send import sendAll
from utils.parsing import parsen from utils.parsing import parsen
@ -116,7 +116,7 @@ class IRCBot(IRCClient):
if i in main.blacklist[self.net]: if i in main.blacklist[self.net]:
debug("Not joining blacklisted channel %s on %s - %i" % (i, self.net, self.num)) debug("Not joining blacklisted channel %s on %s - %i" % (i, self.net, self.num))
continue continue
debug(self.net, "-", self.num, ": joining", i, "in", sleeptime, "seconds") trace(self.net, "-", self.num, ": joining", i, "in", sleeptime, "seconds")
reactor.callLater(sleeptime, self.join, i) reactor.callLater(sleeptime, self.join, i)
sleeptime += increment sleeptime += increment
if sleeptime == 10: if sleeptime == 10: