Skip to content

Commit 05b339a

Browse files
authored
Merge pull request #3728 from hashicorp/b-3701-fetch-tls
Include credentials in fetch requests
2 parents 89a87c8 + 4c859dc commit 05b339a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ BUG FIXES:
55
* core: Fix an issue in which batch jobs with queued placements and lost
66
allocations could result in improper placement counts [[GH-3717](https://github.com/hashicorp/nomad/issues/3717)]
77
* config: Revert minimum CPU limit back to 20 from 100.
8+
* ui: Fix requests using client-side certificates in Firefox. [[GH-3728](https://github.com/hashicorp/nomad/pull/3728)]
89

910
## 0.7.1 (December 19, 2017)
1011

ui/app/services/token.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export default Service.extend({
1919
},
2020
}),
2121

22-
authorizedRequest(url, options = {}) {
22+
authorizedRequest(url, options = { credentials: 'include' }) {
2323
const headers = {};
2424
const token = this.get('secret');
2525

0 commit comments

Comments
 (0)