Skip to content

Commit

Permalink
Merge pull request #1766 from ualbertalib/cds/skip-boroken-item
Browse files Browse the repository at this point in the history
Skip broken item causing fedora migration rake task to fail
  • Loading branch information
ConnorSheremeta authored Jul 20, 2020
2 parents 29064ed + ff700f2 commit 8bfe589
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@ All notable changes to Jupiter project will be documented in this file. Jupiter
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and releases in Jupiter project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [2.0.0.pre2.6] 2020-07-20

### Fixed
- docker image can be built and deployed
- docker image can be built and deployed [PR#1757](https://github.com/ualbertalib/jupiter/pull/1757)
- Skip broken item causing fedora migration rake task to fail [PR#1766](https://github.com/ualbertalib/jupiter/pull/1766)

## [2.0.0.pre2.5] 2020-07-03

Expand Down
3 changes: 2 additions & 1 deletion lib/tasks/jupiter.rake
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,8 @@ namespace :jupiter do
puts 'Migrating Items...'

Item.all.each do |item|
ArItem.from_item(item)
# Skip broken item.
ArItem.from_item(item) unless item.id == '4b3e0c51-33f7-4de9-97ad-d8bd298a8e92'
print '.'
end

Expand Down

0 comments on commit 8bfe589

Please sign in to comment.