data_collector 0.47.0 → 0.49.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/data_collector/config_file.rb +2 -1
- data/lib/data_collector/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 011fa724e8bde117ae8aad07787bb02360ea1aedd74e5421542f6d0aed716aa3
|
4
|
+
data.tar.gz: 0f0a903e89342f0327268964eeb82c83ff73fb3d2f520a583e1b79b230e678b5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 850c951d0e6fbcf4c5ce01fe4c14b04d05b7ce54ff07afc3257dcdde69df99aa588009be3add9c3f7c360129087efb5c20c5f1674841bc1a3ce0c9a0f43893f9
|
7
|
+
data.tar.gz: d0dc81a5346decda9094d78aaf568b9f8a5606b7d056f43f28c3dffeb567a039644e4e20e64be365c19494b41ed1c47e51976be7488873dacb6814c005b41189
|
@@ -53,11 +53,12 @@ module DataCollector
|
|
53
53
|
end
|
54
54
|
|
55
55
|
def self.init
|
56
|
+
@config_file_name = 'config.yml' if @config_file_name.nil?
|
56
57
|
discover_config_file_path
|
57
58
|
raise Errno::ENOENT, "#{@config_file_path}/#{@config_file_name} Not Found. Set path to #{@config_file_name}" unless File.exist?("#{@config_file_path}/#{@config_file_name}")
|
58
59
|
|
59
60
|
ftime = File.exist?("#{@config_file_path}/#{@config_file_name}") ? File.mtime("#{@config_file_path}/#{@config_file_name}") : nil
|
60
|
-
if @config.empty? || @mtime != ftime
|
61
|
+
if @config.nil? || @config.empty? || @mtime != ftime
|
61
62
|
config = YAML::load_file("#{@config_file_path}/#{@config_file_name}", aliases: true, permitted_classes: [Time, Symbol])
|
62
63
|
@config = process(config)
|
63
64
|
end
|