diff options
author | Claire <claire.github-309c@sitedethib.com> | 2021-05-09 11:14:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-09 11:14:32 +0200 |
commit | fc8baba8cb26cdcb74f00a4c51c8a88f1ee3e7ac (patch) | |
tree | 587dde695e2d6121bb8f0495e0c988ab0d3d1e3f /app/models/account_summary.rb | |
parent | 5233e9910677c921ab93e0997964144b1df95a63 (diff) | |
parent | 299ab28d5f1af7da5ec3688ebcbbf711f4567367 (diff) |
Merge pull request #1533 from ClearlyClaire/glitch-soc/merge-upstream
Merge upstream changes
Diffstat (limited to 'app/models/account_summary.rb')
-rw-r--r-- | app/models/account_summary.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/account_summary.rb b/app/models/account_summary.rb index 6a7e17c6c..3a3cebc55 100644 --- a/app/models/account_summary.rb +++ b/app/models/account_summary.rb @@ -16,7 +16,7 @@ class AccountSummary < ApplicationRecord scope :filtered, -> { joins(arel_table.join(FollowRecommendationSuppression.arel_table, Arel::Nodes::OuterJoin).on(arel_table[:account_id].eq(FollowRecommendationSuppression.arel_table[:account_id])).join_sources).where(FollowRecommendationSuppression.arel_table[:id].eq(nil)) } def self.refresh - Scenic.database.refresh_materialized_view(table_name, concurrently: true, cascade: false) + Scenic.database.refresh_materialized_view(table_name, concurrently: false, cascade: false) end def readonly? |