ecs_deployer 1.0.10 → 1.0.11
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/ecs_deployer/client.rb +10 -10
- data/lib/ecs_deployer/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: d8b9bc5a8735c4eb1d79342c151373c12f4cebd9
         | 
| 4 | 
            +
              data.tar.gz: c5c20860e6c7529810199f6eed0b862828f8fecb
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: 6bc40dd8e90ab7229ea6288da8afe181634a9c08ee5b73fef4239ecb7c00c39e863f74e63fd8ee959d05e617c5000d796ba245ca493ddfdd1ccbf547ca4937ae
         | 
| 7 | 
            +
              data.tar.gz: 736a31ecbfe3abe35fc9f998f32971f3de152e360466a4346dd5375f252d8a1ba90ed22b6b21a3f3bd9e60378d25ea3db8275e10a8f143a0bf39537de0365f66
         | 
    
        data/lib/ecs_deployer/client.rb
    CHANGED
    
    | @@ -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
         | 
    
        data/lib/ecs_deployer/version.rb
    CHANGED