Skip to content

Commit

Permalink
Merge pull request #3991 from Coduz/fix-job_step_definition_id_not_ed…
Browse files Browse the repository at this point in the history
…itable

🐛 (Jobs) fixed JobStep.jobStepDefinitionId not being editable
  • Loading branch information
Coduz authored Mar 14, 2024
2 parents c3d3718 + a056f89 commit 1fd852e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public class JobStepImpl extends AbstractKapuaNamedEntity implements JobStep {

@Embedded
@AttributeOverrides({
@AttributeOverride(name = "eid", column = @Column(name = "job_step_definition_id", nullable = false, updatable = false))
@AttributeOverride(name = "eid", column = @Column(name = "job_step_definition_id", nullable = false, updatable = true))
})
private KapuaEid jobStepDefinitionId;

Expand Down

0 comments on commit 1fd852e

Please sign in to comment.