aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorKazuki Yamaguchi <k@rhe.jp>2015-04-19 02:23:56 +0900
committerKazuki Yamaguchi <k@rhe.jp>2015-04-19 02:23:56 +0900
commite6bd3852ae9b6d30f7a0b873c9a7ad7933339882 (patch)
treee81ab2b87df90cd53cb6b40c71c6b4eb336d0a19 /lib
parent8e3249c69b017916396dd128950f99712b076009 (diff)
downloadaclog-e6bd3852ae9b6d30f7a0b873c9a7ad7933339882.tar.gz
collector: make event_queue parse unauthorized event properly
Diffstat (limited to 'lib')
-rw-r--r--lib/collector/event_queue.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/collector/event_queue.rb b/lib/collector/event_queue.rb
index ef9fa9e..3851d82 100644
--- a/lib/collector/event_queue.rb
+++ b/lib/collector/event_queue.rb
@@ -87,7 +87,7 @@ module Collector
end
def push_unauthorized(unauthorized)
- @queue_unauthorized << unauthorized
+ @queue_unauthorized << unauthorized[:data]
end
private