diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2010-06-09 15:37:00 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2010-06-09 15:37:00 +0200 |
commit | 8fbcea483710faae468ecf0ba706adc7e60ed41d (patch) | |
tree | bf69b277de872fc88a53fd2a43b9b21f48efd90d /runtime | |
parent | 395660f462c62029f76b99f73bd9a424a8cf73a2 (diff) | |
download | rsyslog-8fbcea483710faae468ecf0ba706adc7e60ed41d.tar.gz rsyslog-8fbcea483710faae468ecf0ba706adc7e60ed41d.tar.xz rsyslog-8fbcea483710faae468ecf0ba706adc7e60ed41d.zip |
main msg q consumer now preprocesses messages before doing rule processing
things like ACL check and message parsing. This leads to a greater level
of concurrent processing. Beware, though, that this commit duplicates
some messages. May be a regression from this or an earlier commit. I will
soon sort out.
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/rule.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/runtime/rule.c b/runtime/rule.c index 7a26a03a..3b98d7d1 100644 --- a/runtime/rule.c +++ b/runtime/rule.c @@ -166,7 +166,6 @@ shouldProcessThisMessage(rule_t *pRule, msg_t *pMsg, int *bProcessMsg) } } -RUNLOG_VAR("%p", pRule->pCSProgNameComp); if(pRule->pCSProgNameComp != NULL) { int bInv = 0, bEqv = 0, offset = 0; if(*(rsCStrGetSzStrNoNULL(pRule->pCSProgNameComp)) == '-') { |