about summary refs log tree commit diff
path: root/lib/chewy/strategy
diff options
context:
space:
mode:
authorClaire <claire.github-309c@sitedethib.com>2023-04-04 12:01:52 +0200
committerGitHub <noreply@github.com>2023-04-04 12:01:52 +0200
commitaf01ab7efebab356e73b498afe4258ae7515cc6a (patch)
tree798f5cde568987b7641543eb3972f355bae9170b /lib/chewy/strategy
parent8192b0da7cd1fac38a68eab6746fc7ec74328a77 (diff)
parentd29cf8a044f6c0d004649223e018d240983e8437 (diff)
Merge pull request #2159 from ClearlyClaire/glitch-soc/merge-upstream
Merge upstream changes
Diffstat (limited to 'lib/chewy/strategy')
-rw-r--r--lib/chewy/strategy/bypass_with_warning.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/chewy/strategy/bypass_with_warning.rb b/lib/chewy/strategy/bypass_with_warning.rb
new file mode 100644
index 000000000..eb6fbaab1
--- /dev/null
+++ b/lib/chewy/strategy/bypass_with_warning.rb
@@ -0,0 +1,12 @@
+# frozen_string_literal: true
+
+module Chewy
+  class Strategy
+    class BypassWithWarning < Base
+      def update(...)
+        Rails.logger.warn 'Chewy update without a root strategy' unless @warning_issued
+        @warning_issued = true
+      end
+    end
+  end
+end