Skip to content

Commit

Permalink
[close #109] Allow retrying failed release
Browse files Browse the repository at this point in the history
When a deploy succeeds but the release fails the git remote retains the contents of the `git push`. This means if you immediately try to push again that you'll get a `Everything up-to-date` from the remote and Heroku will not try to re-build your project.

We don't want that behavior, we want to retry on a failed release incase it's intermittent. This PR adds an empty commit when a failed release is detected.
  • Loading branch information
schneems committed Aug 20, 2020
1 parent cccb0c1 commit 46bd67b
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 14 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## HEAD

- Initializing an `App` can now take a `retries` key to overload the global hatchet env var (https://github.com/heroku/hatchet/pull/119)
- Calling `App#commit!` now adds an empty commit if there is no changes on disk (https://github.com/heroku/hatchet/pull/119)
- Bugfix: Failed release phase in deploys can now be re-run (https://github.com/heroku/hatchet/pull/119)
- Bugfix: Allow `hatchet lock` to be run against new projects (https://github.com/heroku/hatchet/pull/118)
- Bugfix: Allow `hatchet.lock` file to lock a repo to a different branch than what is specified as default for GitHub (https://github.com/heroku/hatchet/pull/118)

Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -531,6 +531,8 @@ WARNING: Enabling `run_multi` setting on an app will charge your Heroku account
WARNING: Do not use `run_multi` if you're not using the `deploy` block syntax or manually call `teardown!` inside the text context [more info about how behavior does not work with the `after` block syntax in rspec](https://github.com/heroku/hatchet/issues/110).
WARNING: To work, `run_multi` requires your application to have a `web` process associated with it.

- `retries` (Integer): When passed in, this value will be used insead of the global `HATCHET_RETRIES` set via environment variable. When `allow_failures: true` is set as well as a retries value, then the application will not retry pushing to Heroku.

### App methods:

- `app.set_config()`: Updates the configuration on your app taking in a hash
Expand Down
26 changes: 14 additions & 12 deletions lib/hatchet/app.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class App
HATCHET_BUILDPACK_BRANCH = -> { ENV['HATCHET_BUILDPACK_BRANCH'] || ENV['HEROKU_TEST_RUN_BRANCH'] || Hatchet.git_branch }
BUILDPACK_URL = "https://github.com/heroku/heroku-buildpack-ruby.git"

attr_reader :name, :stack, :directory, :repo_name, :app_config, :buildpacks, :reaper
attr_reader :name, :stack, :directory, :repo_name, :app_config, :buildpacks, :reaper, :max_retries_count

class FailedDeploy < StandardError; end

Expand Down Expand Up @@ -55,6 +55,7 @@ def initialize(repo_name,
buildpack_url: nil,
before_deploy: nil,
run_multi: ENV["HATCHET_RUN_MULTI"],
retries: RETRIES,
config: {}
)
@repo_name = repo_name
Expand All @@ -68,6 +69,7 @@ def initialize(repo_name,
@buildpacks = Array(@buildpacks)
@buildpacks.map! {|b| b == :default ? self.class.default_buildpack : b}
@run_multi = run_multi
@max_retries_count = retries

if run_multi && !ENV["HATCHET_EXPENSIVE_MODE"]
raise "You're attempting to enable `run_multi: true` mode, but have not enabled `HATCHET_EXPENSIVE_MODE=1` env var to verify you understand the risks"
Expand Down Expand Up @@ -129,7 +131,7 @@ def set_lab(lab)
end

def add_database(plan_name = 'heroku-postgresql:dev', match_val = "HEROKU_POSTGRESQL_[A-Z]+_URL")
Hatchet::RETRIES.times.retry do
max_retries_count.times.retry do
# heroku.post_addon(name, plan_name)
api_rate_limit.call.addon.create(name, plan: plan_name )
_, value = get_config.detect {|k, v| k.match(/#{match_val}/) }
Expand Down Expand Up @@ -316,7 +318,7 @@ def before_deploy(&block)
end

def commit!
local_cmd_exec!('git add .; git commit -m next')
local_cmd_exec!('git add .; git commit --allow-empty -m next')
end

def push_without_retry!
Expand Down Expand Up @@ -386,12 +388,12 @@ def deploy(&block)
end

def push
max_retries = @allow_failure ? 1 : RETRIES
max_retries.times.retry do |attempt|
retry_count = allow_failure? ? 1 : max_retries_count
retry_count.times.retry do |attempt|
begin
@output = self.push_without_retry!
rescue StandardError => error
puts retry_error_message(error, attempt, max_retries)
puts retry_error_message(error, attempt) unless retry_count == 1
raise error
end
end
Expand All @@ -400,10 +402,10 @@ def push
alias :push_with_retry :push
alias :push_with_retry! :push_with_retry

def retry_error_message(error, attempt, max_retries)
def retry_error_message(error, attempt)
attempt += 1
return "" if attempt == max_retries
msg = "\nRetrying failed Attempt ##{attempt}/#{max_retries} to push for '#{name}' due to error: \n"<<
return "" if attempt == max_retries_count
msg = "\nRetrying failed Attempt ##{attempt}/#{max_retries_count} to push for '#{name}' due to error: \n"<<
"#{error.class} #{error.message}\n #{error.backtrace.join("\n ")}"
return msg
end
Expand All @@ -422,7 +424,7 @@ def heroku

def run_ci(timeout: 300, &block)
in_directory do
Hatchet::RETRIES.times.retry do
max_retries_count.times.retry do
result = create_pipeline
@pipeline_id = result["id"]
end
Expand All @@ -433,7 +435,7 @@ def run_ci(timeout: 300, &block)
# that's why we create an app explictly (or maybe it already exists), and then associate it with with the pipeline
# the app will be auto cleaned up later
self.setup!
Hatchet::RETRIES.times.retry do
max_retries_count.times.retry do
couple_pipeline(@name, @pipeline_id)
end

Expand All @@ -446,7 +448,7 @@ def run_ci(timeout: 300, &block)
api_rate_limit: api_rate_limit
)

Hatchet::RETRIES.times.retry do
max_retries_count.times.retry do
test_run.create_test_run
end
test_run.wait!(&block)
Expand Down
1 change: 1 addition & 0 deletions lib/hatchet/git_app.rb
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ def push_without_retry!

releases = platform_api.release.list(name)
if releases.last["status"] == "failed"
commit! # An empty commit allows us to deploy again
raise FailedReleaseError.new(self, "Buildpack: #{@buildpack.inspect}\nRepo: #{git_repo}", output: output)
end

Expand Down
7 changes: 5 additions & 2 deletions spec/hatchet/allow_failure_git_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,11 @@

it "is marked as a failure if the release fails" do
expect {
Hatchet::GitApp.new("default_ruby", before_deploy: release_fail_proc).deploy {}
}.to(raise_error(Hatchet::App::FailedReleaseError))
Hatchet::GitApp.new("default_ruby", before_deploy: release_fail_proc, retries: 2).deploy {}
}.to raise_error { |error|
expect(error).to be_a(Hatchet::App::FailedReleaseError)
expect(error.message).to_not match("Everything up-to-date")
}
end

it "works when failure is allowed" do
Expand Down

0 comments on commit 46bd67b

Please sign in to comment.