Skip to content

Commit

Permalink
checkoint
Browse files Browse the repository at this point in the history
Signed-off-by: Jeff Ortel <[email protected]>
  • Loading branch information
jortel committed Mar 22, 2024
1 parent 7c0c0b3 commit 4b31dd4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion addon/task.go
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,8 @@ func (r *EnvInjector) Inject(extensions []api.Extension) {
mp := make(map[string]any)
b, _ := json.Marshal(extension.Metadata)
_ = json.Unmarshal(b, &mp)
r.inject(mp)
mp = r.inject(mp).(map[string]any)
extension.Metadata, _ = json.Marshal(mp)
}
}

Expand Down

0 comments on commit 4b31dd4

Please sign in to comment.