Skip to content

Commit 425e0a0

Browse files
authored
TINY-11924: Switched from http to https (#163)
1 parent 0ae273b commit 425e0a0

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## 15.2.0 - 2026-01-30
8+
9+
## Changed
10+
- Changed so tests on AWS device farm uses https instead of http. #TINY-11924
11+
712
# 15.1.1 - 2025-12-19
813

914
## Unreleased

modules/server/src/main/ts/bedrock/auto/Tunnel.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ const createSSH = async (port: number | string, domain: string): Promise<Tunnel>
5959

6060
try {
6161
await waitForReady(tunnelProc);
62-
const urlText = 'http://' + subdomain + '.' + domain;
62+
const urlText = 'https://' + subdomain + '.' + domain;
6363
console.log('Tunnel URL: ' + urlText);
6464
const url = new URL(urlText);
6565

@@ -95,7 +95,7 @@ const createLambda = async (port: number | string, credentials: LambdaCredential
9595
key: credentials.key,
9696
port: port.toString()
9797
};
98-
98+
9999
const shutdown = async (): Promise<void> => {
100100
console.log('Shutting down tunnel...');
101101
return tunnel.stop(null as unknown as ((_: boolean) => void));
@@ -134,4 +134,4 @@ export const prepareConnection = async (port: number, remote: string | undefined
134134
url: new URL('http://localhost:' + port),
135135
shutdown: () => Promise.resolve()
136136
});
137-
};
137+
};

0 commit comments

Comments
 (0)