riddle 2.2.1 → 2.2.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/HISTORY +3 -0
- data/README.markdown +1 -1
- data/lib/riddle/controller.rb +2 -2
- data/riddle.gemspec +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: 16cce08cdd0afffbd0189f3ebdafce83928257d2
|
4
|
+
data.tar.gz: 145e3cb7642fde0dd66411ae800b4db94bc2765a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5a82eccd82b01e0161d5101f337e59ade78bb1c088f9dbe88c13f13f1fff60e05665c44ec576f2f2b795ba2c5ecde3d4470aea6c314fc1be77896b7cbb4205b1
|
7
|
+
data.tar.gz: 1d3266ef9b83e5f7e71b16fa15cf47910aa82b5d3b8b36c1de678a9a76ecae22070e4d0a6d1ce9479b5a61ea5ea6105f47bb136fd3f955b5b897b28b67b87ebb
|
data/HISTORY
CHANGED
data/README.markdown
CHANGED
data/lib/riddle/controller.rb
CHANGED
@@ -26,7 +26,7 @@ module Riddle
|
|
26
26
|
indices << '--all' if indices.empty?
|
27
27
|
|
28
28
|
command = "#{indexer} --config \"#{@path}\" #{indices.join(' ')}"
|
29
|
-
command
|
29
|
+
command = "#{command} --rotate" if running?
|
30
30
|
|
31
31
|
Riddle::ExecuteCommand.call command, options[:verbose]
|
32
32
|
end
|
@@ -36,7 +36,7 @@ module Riddle
|
|
36
36
|
check_for_configuration_file
|
37
37
|
|
38
38
|
command = "#{searchd} --pidfile --config \"#{@path}\""
|
39
|
-
command
|
39
|
+
command = "#{command} --nodetach" if options[:nodetach]
|
40
40
|
|
41
41
|
exec(command) if options[:nodetach]
|
42
42
|
|
data/riddle.gemspec
CHANGED