Skip to content

Commit

Permalink
Fix exec popup link for job id ≠ name
Browse files Browse the repository at this point in the history
This closes #7814. It’s not testable within the current
testing structure, unfortunately.
  • Loading branch information
backspace committed Apr 27, 2020
1 parent 51b6ba8 commit c47c43e
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 @@ -4,6 +4,7 @@ BUG FIXES:

* api: autoscaling policies should not be returned for stopped jobs [[GH-7768](https://github.com/hashicorp/nomad/issues/7768)]
* jobspec: autoscaling policy block should return a parsing error multiple `policy` blocks are provided [[GH-7716](https://github.com/hashicorp/nomad/issues/7716)]
* ui: Fixed a bug where exec popup had incorrect URL for jobs where name ≠ id [[GH-7814](https://github.com/hashicorp/nomad/issues/7814)]

## 0.11.1 (April 22, 2020)

Expand Down
2 changes: 1 addition & 1 deletion ui/app/components/exec/open-button.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export default Component.extend({

generateUrl() {
let urlSegments = {
job: this.job.get('name'),
job: this.job.get('plainId'),
};

if (this.taskGroup) {
Expand Down

0 comments on commit c47c43e

Please sign in to comment.