mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 08:09:33 +08:00
FEATURE: multisite support for posts:rebake_uncooked_posts
This commit is contained in:
parent
a2428bd862
commit
d6daa60d0a
|
@ -8,6 +8,8 @@ task 'posts:rebake' => :environment do
|
|||
end
|
||||
|
||||
task 'posts:rebake_uncooked_posts' => :environment do
|
||||
RailsMultisite::ConnectionManagement.each_connection do
|
||||
puts "Rebaking uncooked posts on #{RailsMultisite::ConnectionManagement.current_db}"
|
||||
uncooked = Post.where('baked_version <> ? or baked_version IS NULL', Post::BAKED_VERSION)
|
||||
|
||||
rebaked = 0
|
||||
|
@ -19,6 +21,7 @@ task 'posts:rebake_uncooked_posts' => :environment do
|
|||
end
|
||||
|
||||
puts "", "#{rebaked} posts done!", ""
|
||||
end
|
||||
end
|
||||
|
||||
desc 'Update each post with latest markdown and refresh oneboxes'
|
||||
|
|
Loading…
Reference in New Issue
Block a user