gpt4 book ai didi

ruby-on-rails - 为 DelayedJob 设置租户范围

转载 作者:行者123 更新时间:2023-12-03 08:29:30 24 4
gpt4 key购买 nike

我有一个 Multi-Tenancy Rails 应用程序,它在许多模型上都有一个 tenant_id 列。

属于特定租户的每个模型都有一个基于租户类上的类变量的默认范围:

default_scope { where(tenant_id: Tenant.current_id) }

Tenant.current_id 在应用程序 Controller 中设置。

问题是,当我(通过延迟作业)发送有关租户范围对象(即 UserMailer.delay.contact_user(@some_user_in_a_specific_tenant))的邮件时,我得到了 NoMethodError s for nilClass 每当我在 Mailer 中的 @some_user_in_a_specific_tenant 上调用任何内容时。大概是因为延迟作业进程未设置 Tenant.current_id

如何让 DJ 访问我传递的对象?

最佳答案

在对作业进行排队时获取 current_id,并从中构建一个不依赖于应用程序类变量的范围。或者首先获取要操作的记录 ID 列表,然后将其传递给 DJ。

例子:

def method_one(id)
Whatever.where(:tenant_id => id).do_stuff
end

def method_two(ids)
Whatever.find(ids).do_stuff
end

handle_asynchronously :method_one, :method_two

# then
method_one(Tenant.current_id)

# or
ids = Whatever.all.map(&:id)
method_two(ids)

关于ruby-on-rails - 为 DelayedJob 设置租户范围,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13618884/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com