Skip to content

Commit cb873fb

Browse files
committed
fix: migrate benchmarks to the current schema
benchmark/support.rb applied only the initial migration, so the state_revision column added in 0.4.0 was missing. Every message failed at commit with ActiveModel::UnknownAttributeError, retried with backoff, and the synchronous benchmarks timed out reporting waiting_on=not_yet_available. Apply both migrations, as the test helper already does.
1 parent c6873d7 commit cb873fb

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

benchmark/support.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,9 @@ def establish_connection
228228
# @rbs () -> void
229229
def migrate
230230
require_relative "../db/migrate/20260805000000_create_solid_objects_tables"
231+
require_relative "../db/migrate/20260806000000_add_state_revision_to_solid_objects_instances"
231232
CreateSolidObjectsTables.new.migrate(:up)
233+
AddStateRevisionToSolidObjectsInstances.new.migrate(:up)
232234
end
233235

234236
# @rbs () -> void

0 commit comments

Comments
 (0)