class A < Servitium::Service
capture_exceptions true
end
class B < A
capture_exceptions false
def perform
raise StandardError, "test"
end
end
B.perform
In the above scenario I would expect the StandardError to be raised in B class, however instead the value of capture_exceptions in B.perform is true.
In the above scenario I would expect the
StandardErrorto be raised inBclass, however instead the value ofcapture_exceptionsinB.performistrue.