Use FanOutOnWriteService AFTER processing mentions

This commit is contained in:
Eugen Rochko
2016-03-19 00:41:29 +01:00
parent 47d1cb4e21
commit f97fc9744f
4 changed files with 17 additions and 1 deletions

View File

@ -52,6 +52,9 @@ class ProcessFeedService < BaseService
end
end
end
fan_out_on_write_service.(status)
end
end
end
@ -166,4 +169,8 @@ class ProcessFeedService < BaseService
def update_remote_profile_service
@update_remote_profile_service ||= UpdateRemoteProfileService.new
end
def fan_out_on_write_service
@fan_out_on_write_service ||= FanOutOnWriteService.new
end
end