Merge pull request #3728 from hashicorp/b-3701-fetch-tls

Include credentials in fetch requests
This commit is contained in:
Michael Schurter 2018-01-08 14:00:53 -08:00 committed by GitHub
commit 4a8a893f56
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -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)

View File

@ -19,7 +19,7 @@ export default Service.extend({
},
}),
authorizedRequest(url, options = {}) {
authorizedRequest(url, options = { credentials: 'include' }) {
const headers = {};
const token = this.get('secret');