Skip to content

Commit df64fc7

Browse files
authored
insight-journal: Use https to write logs
1 parent 5b4276e commit df64fc7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

extensions/cli-ext-insight-journal/stream.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export default new Command({
3333
const log = logResp.bodyJson;
3434
const token = await opts.auth.getToken(log.fqdn);
3535

36-
const stream = await opts.http.get(`http://${log.fqdn}/log`, {
36+
const stream = await opts.http.get(`https://${log.fqdn}/log`, {
3737
headers: { authorization: `Bearer ${token}` },
3838
});
3939
let lines = 0;

0 commit comments

Comments
 (0)