Open fractaledmind opened 1 year ago
Imagine a workflow step method that makes an API call to create a record in an external system:
def create_external_record self.external_record = ExternalClient.create(...) end
Now, imagine that we get a timeout error when AcidicJob is trying to write the value to the Run#attr_accessors field.
Run#attr_accessors
In this case, the record is created in the external system, but we don't have a persisted copy of that record on our end.
Imagine a workflow step method that makes an API call to create a record in an external system:
Now, imagine that we get a timeout error when AcidicJob is trying to write the value to the
Run#attr_accessors
field.In this case, the record is created in the external system, but we don't have a persisted copy of that record on our end.