How to use ActiveStorage in multi DB setup?

Hi all, first of all: thanks for the amazing work on Rails 6.1

I’m using this version (6.1) and have two databases defined in my yaml: primary and datawarehouse.

I have some models pointing to primary and some to datawarehouse by letting them inherit from another ActiveRecord::Base:

class ApplicationRecordDwh < ActiveRecord::Base
  self.abstract_class = true
  connects_to database: { writing: :datawarehouse, reading: :datawarehouse }
end

This works fine, however it doesn’t work at all for models that contain any ActiveStorage objects. Wouldn’t it be logical that if a model points to a different database, and has a has_one attachment, it would also go look for that in the same DB? Or at least have the option to specify this?