lib/csb/configuration.rb in csb-0.2.4 vs lib/csb/configuration.rb in csb-0.3.0
- old
+ new
@@ -1,10 +1,11 @@
module Csb
class Configuration
- attr_accessor :utf8_bom, :streaming, :after_streaming_error
+ attr_accessor :utf8_bom, :streaming, :after_streaming_error, :ignore_class_names
def initialize
@utf8_bom = false
@streaming = true
+ @ignore_class_names = %w[Puma::ConnectionError]
end
end
end