diff --git a/app/models/tournament.rb b/app/models/tournament.rb index 490812f..6fe5f1d 100644 --- a/app/models/tournament.rb +++ b/app/models/tournament.rb @@ -46,9 +46,6 @@ class Tournament < ActiveRecord::Base def destroyAllMatches matches.destroy_all end - if Rails.env.production? - handle_asynchronously :destroyAllMatches - end def matchesByRound(round) matches.joins(:weight).where(round: round).order("weights.max")