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

(bug) unable to run open project update task

This commit is contained in:
Du Peng 2024-10-21 12:08:23 +02:00
parent 1e74afd755
commit 221ed8009a
2 changed files with 3 additions and 1 deletions

View File

@ -2,6 +2,8 @@
## Next release
- Fix a bug: unable to run open project update task
## v6.3.33 2024 October 2
- Fix a bug: unable to reset OpenApi token

View File

@ -19,7 +19,7 @@ namespace :fablab do
task bulk_update: :environment do
if Setting.get('openlab_app_id').present? && Setting.get('openlab_app_secret').present?
Project.find_each do |project|
project.openlab_update
project.openlab_create_or_update
puts '-> Done'
end
else