1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00

Merge branch 'dev' for release 2.5.14

This commit is contained in:
Sylvain 2017-09-12 08:43:53 +02:00
commit 6efb4eb773
3 changed files with 6 additions and 2 deletions

View File

@ -1 +1 @@
2.5.13 2.5.14

View File

@ -1,5 +1,9 @@
# Changelog Fab Manager # Changelog Fab Manager
## v2.5.14 2017 September 12
- Fix a bug: Error message in fix:recursive_events_over_DST failed and does not report events to check
## v2.5.13 2017 September 11 ## v2.5.13 2017 September 11
- Fix a bug: ActiveRecord::RecordNotFound when running rake task fix:recursive_events_over_DST with recursive events which the initial event was deleted - Fix a bug: ActiveRecord::RecordNotFound when running rake task fix:recursive_events_over_DST with recursive events which the initial event was deleted

View File

@ -82,7 +82,7 @@ namespace :fablab do
if failed_ids.size > 0 if failed_ids.size > 0
puts "WARNING: The events with IDs #{failed_ids} were not found.\n These were initial events of a recurrence.\n\n You may have to correct the following events manually (IDs): " puts "WARNING: The events with IDs #{failed_ids} were not found.\n These were initial events of a recurrence.\n\n You may have to correct the following events manually (IDs): "
puts "#{Events.where(recurrence_id: failed_ids).map(&:id)}" puts "#{Event.where(recurrence_id: failed_ids).map(&:id)}"
end end
end end
end end