Skip to content

Commit

Permalink
Strict message detection to avoid false-positive
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Mar 20, 2015
1 parent 9e7f5e2 commit 95ba094
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/droonga/serf/agent.rb
Expand Up @@ -152,10 +152,10 @@ def on_standard_output(line_buffer, data)

def suppressed_log_message?(content)
case content
when /memberlist: Failed to receive remote state: EOF/
when /\Amemberlist: Failed to receive remote state: EOF\z/
# See also: https://github.com/hashicorp/consul/issues/598#issuecomment-71576948
true
when /agent: Script .*droonga-engine-serf-event-handler.* slow, execution exceeding/
when /\Aagent: Script .*droonga-engine-serf-event-handler.* slow, execution exceeding/
# Droonga's serf event handler can be slow for absorbing or some operations.
true
else
Expand Down

0 comments on commit 95ba094

Please sign in to comment.