ecs_deployer 1.0.10 → 1.0.11

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 285a222efd3fba2e0222004d2a29512017bc6673
4
- data.tar.gz: a1402068f57c984baf1856286bcc181a70c1110b
3
+ metadata.gz: d8b9bc5a8735c4eb1d79342c151373c12f4cebd9
4
+ data.tar.gz: c5c20860e6c7529810199f6eed0b862828f8fecb
5
5
  SHA512:
6
- metadata.gz: 6400d4cae86d6b4f9527666a2e327d402be492e8f9b357099fffa36b91b660f857effb25e5882d7fbe4d8a2f02b0f86222ff89225d013fc7f2591ccdbad4aee9
7
- data.tar.gz: 4537eb7c4891caebf9b2ae2be15782e02ad4c6c85d870e56bcfd604df9c0753a4edcc054ba6fdfb5d17496d8b3f102c4e5a82818f960088decf5bdd374511a16
6
+ metadata.gz: 6bc40dd8e90ab7229ea6288da8afe181634a9c08ee5b73fef4239ecb7c00c39e863f74e63fd8ee959d05e617c5000d796ba245ca493ddfdd1ccbf547ca4937ae
7
+ data.tar.gz: 736a31ecbfe3abe35fc9f998f32971f3de152e360466a4346dd5375f252d8a1ba90ed22b6b21a3f3bd9e60378d25ea3db8275e10a8f143a0bf39537de0365f66
@@ -218,22 +218,22 @@ module EcsDeployer
218
218
  wait_time += @pauling_interval
219
219
  result = deploy_status(cluster, service)
220
220
 
221
+ @logger.info "Deploying... [#{result[:new_running_count]}/#{result[:current_running_count]}] (#{wait_time} seconds elapsed)"
222
+ @logger.info "New task: #{@new_task_definition_arn}"
223
+ @logger.info LOG_SEPARATOR
224
+
225
+ result[:task_status_logs].each do |log|
226
+ @logger.info log
227
+ end
228
+
229
+ @logger.info LOG_SEPARATOR
230
+
221
231
  if result[:new_running_count] == result[:current_running_count]
222
232
  @logger.info "Service update succeeded. [#{result[:new_running_count]}/#{result[:current_running_count]}]"
223
233
  @logger.info "New task definition: #{@new_task_definition_arn}"
224
234
 
225
235
  break
226
-
227
236
  else
228
- @logger.info "Deploying... [#{result[:new_running_count]}/#{result[:current_running_count]}] (#{wait_time} seconds elapsed)"
229
- @logger.info "New task: #{@new_task_definition_arn}"
230
- @logger.info LOG_SEPARATOR
231
-
232
- result[:task_status_logs].each do |log|
233
- @logger.info log
234
- end
235
-
236
- @logger.info LOG_SEPARATOR
237
237
  @logger.info 'You can stop process with Ctrl+C. Deployment will continue.'
238
238
 
239
239
  if wait_time > @timeout
@@ -1,3 +1,3 @@
1
1
  module EcsDeployer
2
- VERSION = '1.0.10'.freeze
2
+ VERSION = '1.0.11'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ecs_deployer
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.10
4
+ version: 1.0.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - naomichi-y