Sha256: a93c1618392e1145ca6051b18c1214ff79b4c06b7fb8d980720e565c2f36ee3f
Contents?: true
Size: 439 Bytes
Versions: 29
Compression:
Stored size: 439 Bytes
Contents
# frozen_string_literal: true # Represents an action to set a new API response (which will be stored onto an # idempotency key). One possible option for a return from an #atomic_phase # block. module AcidicJob class FinishedPoint def call(run:) # Skip AR callbacks as there are none on the model run.update_columns( locked_at: nil, recovery_point: Run::FINISHED_RECOVERY_POINT ) end end end
Version data entries
29 entries across 29 versions & 1 rubygems