aboutsummaryrefslogtreecommitdiffstats
path: root/activestorage/lib/active_storage/service/mirror_service.rb
diff options
context:
space:
mode:
authorGeorge Claghorn <george.claghorn@gmail.com>2019-02-14 13:36:04 -0500
committerGitHub <noreply@github.com>2019-02-14 13:36:04 -0500
commiteaf6d188e4b8c72cce6d08170678557e8c3d1713 (patch)
tree80bdfa0d5c8ec24120a36f0245b5440deea44367 /activestorage/lib/active_storage/service/mirror_service.rb
parent5f7180676bd60b44566a24b293376d54ff5d0d94 (diff)
parentd3f92261902d09adf54dbc211e3a1080d943440b (diff)
downloadrails-eaf6d188e4b8c72cce6d08170678557e8c3d1713.tar.gz
rails-eaf6d188e4b8c72cce6d08170678557e8c3d1713.tar.bz2
rails-eaf6d188e4b8c72cce6d08170678557e8c3d1713.zip
Merge pull request #35268 from abhaynikam/35252-add-delegate-for-path-for-method
Fixes missing method `path_for` when using MirrorService with DiskService as the primary service
Diffstat (limited to 'activestorage/lib/active_storage/service/mirror_service.rb')
-rw-r--r--activestorage/lib/active_storage/service/mirror_service.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activestorage/lib/active_storage/service/mirror_service.rb b/activestorage/lib/active_storage/service/mirror_service.rb
index 75274f81b3..aa41df304e 100644
--- a/activestorage/lib/active_storage/service/mirror_service.rb
+++ b/activestorage/lib/active_storage/service/mirror_service.rb
@@ -9,7 +9,7 @@ module ActiveStorage
class Service::MirrorService < Service
attr_reader :primary, :mirrors
- delegate :download, :download_chunk, :exist?, :url, to: :primary
+ delegate :download, :download_chunk, :exist?, :url, :path_for, to: :primary
# Stitch together from named services.
def self.build(primary:, mirrors:, configurator:, **options) #:nodoc: