promiscuous 0.52.1 → 0.53.0
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.
- data/lib/promiscuous/cli.rb +13 -3
- data/lib/promiscuous/version.rb +1 -1
- metadata +1 -1
data/lib/promiscuous/cli.rb
CHANGED
@@ -13,14 +13,24 @@ class Promiscuous::CLI
|
|
13
13
|
end
|
14
14
|
end
|
15
15
|
end
|
16
|
+
|
17
|
+
%w(SIGTERM SIGINT).each do |signal|
|
18
|
+
Signal.trap(signal) do
|
19
|
+
print_status "Exiting..."
|
20
|
+
@worker.terminate if @worker.try(:alive?)
|
21
|
+
@stop = true
|
22
|
+
end
|
23
|
+
end
|
16
24
|
end
|
17
25
|
|
18
26
|
def publish
|
19
27
|
options[:criterias].map { |criteria| eval(criteria) }.each do |criteria|
|
28
|
+
break if @stop
|
20
29
|
title = criteria.name
|
21
30
|
title = "#{title}#{' ' * [0, 20 - title.size].max}"
|
22
31
|
bar = ProgressBar.create(:format => '%t |%b>%i| %c/%C %e', :title => title, :total => criteria.count)
|
23
32
|
criteria.each do |doc|
|
33
|
+
break if @stop
|
24
34
|
doc.promiscuous_sync
|
25
35
|
bar.increment
|
26
36
|
end
|
@@ -29,10 +39,10 @@ class Promiscuous::CLI
|
|
29
39
|
|
30
40
|
def subscribe
|
31
41
|
Promiscuous::Loader.load_descriptors if defined?(Rails)
|
42
|
+
@worker = Promiscuous::Subscriber::Worker.run!
|
43
|
+
Celluloid::Actor[:pump].subscribe_sync.wait
|
32
44
|
print_status "Replicating with #{Promiscuous::Subscriber::AMQP.subscribers.count} subscribers"
|
33
|
-
|
34
|
-
rescue Interrupt
|
35
|
-
# SIGINT
|
45
|
+
sleep 1 until !@worker.alive?
|
36
46
|
end
|
37
47
|
|
38
48
|
def parse_args(args)
|
data/lib/promiscuous/version.rb
CHANGED