Broadcasts are slowing things down

This commit is contained in:
David Heinemeier Hansson
2025-11-18 17:46:20 +01:00
parent 0e5d320045
commit 9cbb6b4569
+4
View File
@@ -11,6 +11,8 @@ Current.session = ACCOUNT.users.last.identity.sessions.first
puts "Creating #{CARDS_COUNT} cards with #{TAGS_COUNT} tags across #{BOARDS_COUNT} board(s)"
Board.suppressing_turbo_broadcasts do
Card.suppressing_turbo_broadcasts do
BOARDS_COUNT.times do
ACCOUNT.boards.create! name: Faker::Company.buzzword, all_access: true
print "."
@@ -27,3 +29,5 @@ TAGS_COUNT.times do
ACCOUNT.cards.take.toggle_tag_with Faker::Game.title
print "."
end
end
end