Skip to content

Commit

Permalink
Merge pull request #740 from ystia/bugfix/GH-739-slurm-execution-option
Browse files Browse the repository at this point in the history
Bugfix/gh 739 slurm execution option
  • Loading branch information
laurentganne committed May 25, 2021
2 parents 8d7a40d + 1d0480e commit dc281ef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

### BUG FIXES

* Error submitting a SLURM job with no execution option ([GH-739](https://github.com/ystia/yorc/issues/739))
* Workflow with asynchronous action never stops after another step failure ([GH-733](https://github.com/ystia/yorc/issues/733))

## 4.2.0-milestone.1 (May 06, 2021)
Expand Down
2 changes: 1 addition & 1 deletion prov/slurm/execution.go
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ func (e *executionCommon) buildJobInfo(ctx context.Context) error {
if err != nil {
return err
}
if eo != nil && eo.Value != nil {
if eo != nil && eo.RawString() != "" {
err = mapstructure.Decode(eo.Value, &e.jobInfo.ExecutionOptions)
if err != nil {
return errors.Wrapf(err, `invalid execution options datatype for attribute "execution_options" for node %q`, e.NodeName)
Expand Down

0 comments on commit dc281ef

Please sign in to comment.