Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion test/apiTests.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const {LOG_LEVEL_WARNING} = require("../logger");
const logger = require('../logger');
const log = logger.logger;

const RUN_TEST_HOST = 'http://www.webpagetest.org';
const RUN_TEST_HOST = 'https://www.webpagetest.org';
const RUN_TEST_PATH = '/runtest.php';

chai.use(chaiHttp);
Expand Down
4 changes: 2 additions & 2 deletions wtp/apiCaller.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ const resultParser = require('./wtpResultsParser');
const cloudinaryCaller = require('../cloudinary/apiCaller');
const {truncateString} = require('../util/strings');
const RESULTS_URL = 'https://www.webpagetest.org/jsonResult.php';
const RUN_TEST_URL = 'http://www.webpagetest.org/runtest.php';
const GET_TEST_STATUS = 'http://www.webpagetest.org/testStatus.php';
const RUN_TEST_URL = 'https://www.webpagetest.org/runtest.php';
const GET_TEST_STATUS = 'https://www.webpagetest.org/testStatus.php';
const locationSelector = require('./locationSelector');
const apiKeys = require('./apiKey');

Expand Down
2 changes: 1 addition & 1 deletion wtp/locationSelector.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const path = require("path");
const opentelemetry = require("@opentelemetry/api");
const logger = require('../logger').logger;

const GET_LOCATIONS = 'http://www.webpagetest.org/getLocations.php?f=json';
const GET_LOCATIONS = 'https://www.webpagetest.org/getLocations.php?f=json';

const WstMeter = opentelemetry.metrics.getMeter('default');
const locationMetrics = {
Expand Down