Storage: add :azure to remaining callers (#26080)
This commit is contained in:
parent
6c3c5bbbc3
commit
12a6cf569e
6 changed files with 16 additions and 3 deletions
|
@ -46,6 +46,8 @@ module Mastodon::CLI
|
|||
upgrade_storage_s3(progress, attachment, style)
|
||||
when :fog
|
||||
upgrade_storage_fog(progress, attachment, style)
|
||||
when :azure
|
||||
upgrade_storage_azure(progress, attachment, style)
|
||||
when :filesystem
|
||||
upgrade_storage_filesystem(progress, attachment, style)
|
||||
end
|
||||
|
@ -105,6 +107,11 @@ module Mastodon::CLI
|
|||
exit(1)
|
||||
end
|
||||
|
||||
def upgrade_storage_azure(_progress, _attachment, _style)
|
||||
say('The azure storage driver is not supported for this operation at this time', :red)
|
||||
exit(1)
|
||||
end
|
||||
|
||||
def upgrade_storage_filesystem(progress, attachment, style)
|
||||
previous_storage_schema_version = attachment.storage_schema_version
|
||||
previous_path = attachment.path(style)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue