process_controller 0.1.1 → 0.1.2
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/control/version.rb +1 -1
- data/lib/control_helper.rb +1 -1
- 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: 523ecb074f85032a0fdb56b521195a23988e2a73
|
4
|
+
data.tar.gz: 3a817cd9ed9a3556ff723a2a3f30efb7b871f1fe
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d69d7ba8b19eeb7994a83a2d2d4c207680a02a02623a67061a7b5fe262a4966f71ad804d95f04879278ba5fab6ccf4bbe1cddf573d007839faeb2247d7c09c34
|
7
|
+
data.tar.gz: 9b676ceec13a16e63437babe7d33533e9fd19cda08a08d85002c3ab400e9963d209ca2e7066351125363744b61883305e123aecd3331b4a7d457d8df2c40f284
|
data/lib/control/version.rb
CHANGED
data/lib/control_helper.rb
CHANGED
@@ -114,7 +114,7 @@ module ControlHelper
|
|
114
114
|
def app_not_running?(options)
|
115
115
|
pid_filename = options.fetch(Control_P::OPTIONS_ATTRIBUTES[:pid_filename], nil)
|
116
116
|
raise "no pid filename found in #{options}" if pid_filename.nil?
|
117
|
-
p "working directory is #{Dir.pwd}"
|
117
|
+
p "working directory is #{Dir.pwd} , trying to cat #{pid_filename} , of type #{pid_filename.class}"
|
118
118
|
res = `cat #{pid_filename}`
|
119
119
|
p "result from cat master_pid is #{res}"
|
120
120
|
'' == res
|