We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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.
The text was updated successfully, but these errors were encountered: