unicorn-ctl 0.1.2 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +15 -0
  2. data/CHANGELOG.md +4 -0
  3. data/bin/unicornctl +1 -1
  4. metadata +5 -11
checksums.yaml ADDED
@@ -0,0 +1,15 @@
1
+ ---
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ MzBlYWViYjZjZTJlYmE5MzM2NGI1NTUyOTg1Nzc4OGQyN2U1YzM1NA==
5
+ data.tar.gz: !binary |-
6
+ OTE3OTY0ZDM3NmNlMTIxMTA2MjczZjBhM2VkMmYzYWUwMjc2Yjg4MA==
7
+ SHA512:
8
+ metadata.gz: !binary |-
9
+ MzJlYmQyMWMyNGY2MGEwODY3NDYzMzk0MGYwNTlkYjJlOGE0ZWVlMmQ3MGQ0
10
+ MmQwZDY5YzFiZDMzOWMxOWNhMTIxZjY2ZGRmZGNjMmQ0M2FiOGY5ZWE0MWRj
11
+ ZDY4ZjhiZGJlZWM1ZjM2Y2FlZmQyMTY0NmM1OTliNDNmYmY5NDk=
12
+ data.tar.gz: !binary |-
13
+ NTY0MmJiNWU1YjM4MDE1NjJkNzY1OWM3ODdiOGYzYzJmOTA3MDU2M2Y0OWQx
14
+ ZGE5ODc3MWRjZGIxNGU4NmFhNjUwMjgzMTk0NWYzYjk2NTgwMWQ4OTY1NWZi
15
+ N2FlMWNiYjI5MWJkYjEzYTJlNTQ2OTJmMTdiMWU5MTUwNTY3NGM=
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## UnicornCtl Changelog
2
2
 
3
+ ### 0.1.3 / Not released yet
4
+
5
+ * Fix unicorn upgrades: really wait for the new master to replace the old one.
6
+
3
7
  ### 0.1.2 / 2013-09-11
4
8
 
5
9
  * Added `status` command.
data/bin/unicornctl CHANGED
@@ -318,7 +318,7 @@ def upgrade_application!(options)
318
318
  while Time.now - start_time < options[:timeout]
319
319
  sleep(1)
320
320
  new_pid = File.exists?(pid_file) ? read_pid(pid_file) : nil
321
- if new_pid != old_pid
321
+ if new_pid && new_pid != old_pid
322
322
  new_started = true
323
323
  break
324
324
  end
metadata CHANGED
@@ -1,20 +1,18 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: unicorn-ctl
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
5
- prerelease:
4
+ version: 0.1.3
6
5
  platform: ruby
7
6
  authors:
8
7
  - Oleksiy Kovyrin
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2013-09-11 00:00:00.000000000 Z
11
+ date: 2013-09-17 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: httparty
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
17
  - - ! '>='
20
18
  - !ruby/object:Gem::Version
@@ -22,7 +20,6 @@ dependencies:
22
20
  type: :runtime
23
21
  prerelease: false
24
22
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
23
  requirements:
27
24
  - - ! '>='
28
25
  - !ruby/object:Gem::Version
@@ -30,7 +27,6 @@ dependencies:
30
27
  - !ruby/object:Gem::Dependency
31
28
  name: bundler
32
29
  requirement: !ruby/object:Gem::Requirement
33
- none: false
34
30
  requirements:
35
31
  - - ! '>='
36
32
  - !ruby/object:Gem::Version
@@ -38,7 +34,6 @@ dependencies:
38
34
  type: :runtime
39
35
  prerelease: false
40
36
  version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
37
  requirements:
43
38
  - - ! '>='
44
39
  - !ruby/object:Gem::Version
@@ -58,26 +53,25 @@ files:
58
53
  homepage: https://github.com/swiftype/unicorn-ctl
59
54
  licenses:
60
55
  - MIT
56
+ metadata: {}
61
57
  post_install_message:
62
58
  rdoc_options: []
63
59
  require_paths:
64
60
  - lib
65
61
  required_ruby_version: !ruby/object:Gem::Requirement
66
- none: false
67
62
  requirements:
68
63
  - - ! '>='
69
64
  - !ruby/object:Gem::Version
70
65
  version: '0'
71
66
  required_rubygems_version: !ruby/object:Gem::Requirement
72
- none: false
73
67
  requirements:
74
68
  - - ! '>='
75
69
  - !ruby/object:Gem::Version
76
70
  version: '0'
77
71
  requirements: []
78
72
  rubyforge_project:
79
- rubygems_version: 1.8.23
73
+ rubygems_version: 2.1.3
80
74
  signing_key:
81
- specification_version: 3
75
+ specification_version: 4
82
76
  summary: Start/stop/restart/upgrade unicorn instances reliably.
83
77
  test_files: []