From 5bffb033dfcd4ca1bdba8575e550a092a606ca12 Mon Sep 17 00:00:00 2001 From: Gerhard Schlager Date: Thu, 26 Mar 2020 16:37:42 +0100 Subject: [PATCH] FIX: The migrate_to_s3 rake task couldn't find the AWS SDK --- lib/file_store/to_s3_migration.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/file_store/to_s3_migration.rb b/lib/file_store/to_s3_migration.rb index 456e428657..01c69dc1ee 100644 --- a/lib/file_store/to_s3_migration.rb +++ b/lib/file_store/to_s3_migration.rb @@ -1,5 +1,7 @@ # frozen_string_literal: true +require 'aws-sdk-s3' + module FileStore ToS3MigrationError = Class.new(RuntimeError)