gpt4 book ai didi

ruby - Sidekiq 作业 - 在条件下返回失败或成功

转载 作者:太空宇宙 更新时间:2023-11-03 18:11:25 25 4
gpt4 key购买 nike

如何以编程方式使 Sidekiq 中的作业失败?

perform() 函数中调用 system('some_command') 总是会返回一个成功的作业。

我想根据这样的条件让工作失败:

def perform(data)
output = system('some_command')
if output
# return this job as :success
else
# return this job as :fail
end
end

提前致谢

最佳答案

我认为如果你只是抛出一个异常,它会使 sidekiq 作业失败:

def perform(data)
output = system('some_command')
raise StandardError, "my error is so sexy" unless output
end

当然,你应该用有意义的东西替换我写的愚蠢的错误消息。

注意:unless xif !x 相同

关于ruby - Sidekiq 作业 - 在条件下返回失败或成功,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33408898/

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