Sha256: c963697221075e22f8bca13613b9ef5971b91a296f6a5def07f2a6419d05cb67
Contents?: true
Size: 387 Bytes
Versions: 2
Compression:
Stored size: 387 Bytes
Contents
module PerconaMigrator class Configuration attr_accessor :tmp_path, :global_percona_args def initialize @tmp_path = '.'.freeze @error_log_filename = 'percona_migrator_error.log'.freeze @global_percona_args = nil end def error_log_path File.join(tmp_path, error_log_filename) end private attr_reader :error_log_filename end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
percona_migrator-3.0.0 | lib/percona_migrator/configuration.rb |
percona_migrator-1.1.0 | lib/percona_migrator/configuration.rb |