Use images without awaiting conversion anymore
We set up `impress-asset-images.openneo.net` to redirect to the right asset, without needing to depend on AWS anymore for HTML5-converted items! Our quick fix for this: always serve `has_image: true` to the frontend, so it always tries to use the image, regardless of whether we've marked it as converted in the database. (We've turned off the converters too!)
This commit is contained in:
parent
515b089b3b
commit
4f357c2f9c
1 changed files with 4 additions and 2 deletions
|
@ -199,7 +199,10 @@ class SwfAsset < ActiveRecord::Base
|
|||
:zone_id => zone_id,
|
||||
:zones_restrict => zones_restrict,
|
||||
:is_body_specific => body_specific?,
|
||||
:has_image => has_image?,
|
||||
# Now that we don't proactively convert images anymore, let's just always
|
||||
# say `has_image: true` when sending data to the frontend, so it'll use the
|
||||
# new URLs anyway!
|
||||
:has_image => true,
|
||||
:images => images
|
||||
}
|
||||
if options[:for] == 'wardrobe'
|
||||
|
@ -318,4 +321,3 @@ class SwfAsset < ActiveRecord::Base
|
|||
File.join(relevant_pieces)
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue