Skip to content

Commit

Permalink
fix: id should be 36 char long (#467)
Browse files Browse the repository at this point in the history
  • Loading branch information
rpassas authored Mar 14, 2024
1 parent 7550079 commit f101a6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/inferno/repositories/validator_sessions.rb
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def save(params)
suite_options:,
validator_name: }
).insert(
id: "#{validator_session_id}_#{validator_name}",
id: SecureRandom.uuid,
validator_session_id:,
test_suite_id:,
validator_name:,
Expand Down

0 comments on commit f101a6f

Please sign in to comment.