arkaan 0.7.6 → 0.7.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/arkaan/utils/micro_service.rb +3 -3
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cbd93d0965decdec641dae070dab61820d1389b2
|
|
4
|
+
data.tar.gz: fc09e6cbb1294206b4673308afad7693c908fd0e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7697024d20354fa1e9d3f1af9f8ac0c2b9d32976599e3ba18c30750fe1941adfb2048b27acaadbd4007f2cf921f1bf7eaa72f7bfe36a7e7f372959573e870960
|
|
7
|
+
data.tar.gz: 0329062b64c1c80b6bd02a02c7a1a0ac6afeb5db5a0b79f4c45ad9a35becdc7b0b4e5b382194f923ad3ebf9acca5ac2b10e023a4745593fc7e00989e2006660e
|
|
@@ -77,12 +77,12 @@ module Arkaan
|
|
|
77
77
|
end
|
|
78
78
|
|
|
79
79
|
def load_application(test_mode: false)
|
|
80
|
+
@service = Arkaan::Monitoring::Service.where(key: service_name).first
|
|
81
|
+
register_service if @service.nil?
|
|
82
|
+
register_instance
|
|
80
83
|
if !!(name && service && location)
|
|
81
84
|
@location = File.join(location, '..') if test_mode
|
|
82
85
|
load_mongoid_configuration
|
|
83
|
-
@service = Arkaan::Monitoring::Service.where(key: service_name).first
|
|
84
|
-
register_service if @service.nil?
|
|
85
|
-
register_instance
|
|
86
86
|
load_standard_files
|
|
87
87
|
load_test_files if test_mode
|
|
88
88
|
end
|