Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [0.12.4]
### Changed
- Don't raise errors in the job cleaner worker has issues, just go full nuclear

## [0.12.3]
### Changed
- Rails 7 friendliness
Expand Down
2 changes: 1 addition & 1 deletion app/workers/asyncapi/client/job_cleaner_worker.rb
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def destroy_remote(job)
headers: job.headers,
})

raise response.body unless response.success?
# raise response.body unless response.success?
end

# stopping raising errors if the job is invalid- we don't care, just destroy the invalid job
Expand Down
2 changes: 1 addition & 1 deletion lib/asyncapi/client/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Asyncapi
module Client
VERSION = "0.12.3".freeze
VERSION = "0.12.4.pre.1".freeze
end
end