Skip to content

Commit

Permalink
Merge pull request #390 from Scalingo/fix/remove-async-one-off
Browse files Browse the repository at this point in the history
fix(one-off): remove async field from the run command
  • Loading branch information
SCedricThomas authored Aug 20, 2024
2 parents 9cce141 + d3c3924 commit 98ad369
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## To Be Released

* fix(one-off): remove async field from the run command ([PR#390](https://github.com/Scalingo/go-scalingo/pull/390))

## 7.0.1

* feat(apps): add the `private_network_ids` field to the model
Expand Down
2 changes: 0 additions & 2 deletions run.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ type RunOpts struct {
Env map[string]string
Size string
Detached bool
Async bool
HasUploads bool
}

Expand All @@ -40,7 +39,6 @@ func (c *Client) Run(ctx context.Context, opts RunOpts) (*RunRes, error) {
"env": opts.Env,
"size": opts.Size,
"detached": opts.Detached,
"async": opts.Async,
"has_uploads": opts.HasUploads,
},
}
Expand Down

0 comments on commit 98ad369

Please sign in to comment.