Skip to content

Commit

Permalink
🐛 (Jobs) fixed JobStep.jobStepDefinitionId not being editable
Browse files Browse the repository at this point in the history
Signed-off-by: Alberto Codutti <alberto.codutti@eurotech.com>
  • Loading branch information
Coduz committed Mar 14, 2024
1 parent c3d3718 commit a056f89
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 a056f89

Please sign in to comment.