Skip to content

Commit

Permalink
Include credentials in fetch requests
Browse files Browse the repository at this point in the history
  • Loading branch information
schmichael committed Jan 8, 2018
1 parent 9a54729 commit 4c859dc
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 @@ -5,6 +5,7 @@ BUG FIXES:
* core: Fix an issue in which batch jobs with queued placements and lost
allocations could result in improper placement counts [[GH-3717](https://github.com/hashicorp/nomad/issues/3717)]
* config: Revert minimum CPU limit back to 20 from 100.
* ui: Fix requests using client-side certificates in Firefox. [[GH-3728](https://github.com/hashicorp/nomad/pull/3728)]

## 0.7.1 (December 19, 2017)

Expand Down
2 changes: 1 addition & 1 deletion ui/app/services/token.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export default Service.extend({
},
}),

authorizedRequest(url, options = {}) {
authorizedRequest(url, options = { credentials: 'include' }) {
const headers = {};
const token = this.get('secret');

Expand Down

0 comments on commit 4c859dc

Please sign in to comment.