spool 1.0.3 → 1.0.4
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/spool/pool.rb +1 -1
- data/lib/spool/version.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: b153eb818306253d14aff97ee0883c8ab19dd4bb
|
|
4
|
+
data.tar.gz: aadd1a7bdfdf4c8ffbe42b838059fd8ab14eb201
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1779bb5745a04e15f872eff5fb71117281498f44cd20c4b76ddfc156771b448acaae46375774fe783a93d0b8fb65a25962f85e21f0dd51e598b7ab73d75a8974
|
|
7
|
+
data.tar.gz: 8f042cf6b33a87c2262a9f528bfb8ffd9a17a835d9a6abf8c86d621cc34d9340ee9809f8a04974d4415d243c946c3b1798eaefbf8dca660ca5b531edd46546b9
|
data/lib/spool/pool.rb
CHANGED
|
@@ -98,7 +98,7 @@ module Spool
|
|
|
98
98
|
working_processes << Spawner.spawn(configuration)
|
|
99
99
|
end
|
|
100
100
|
|
|
101
|
-
logger.info(self.class) { "
|
|
101
|
+
logger.info(self.class) { "Status after new childrens => #{format_processes}}" }
|
|
102
102
|
elsif configuration.processes < working_processes.count
|
|
103
103
|
count_to_kill = working_processes.count - configuration.processes
|
|
104
104
|
logger.info(self.class) { "Killing #{count_to_kill} children. Current state => #{format_processes}" }
|
data/lib/spool/version.rb
CHANGED