lib/departure/configuration.rb in departure-6.2.0 vs lib/departure/configuration.rb in departure-6.3.0
- old
+ new
@@ -1,12 +1,13 @@
module Departure
class Configuration
- attr_accessor :tmp_path, :global_percona_args
+ attr_accessor :tmp_path, :global_percona_args, :enabled_by_default
def initialize
@tmp_path = '.'.freeze
@error_log_filename = 'departure_error.log'.freeze
@global_percona_args = nil
+ @enabled_by_default = true
end
def error_log_path
File.join(tmp_path, error_log_filename)
end