added missing semicolon to lambda edge function

pull/1387/head
Scott Anderson 2020-09-01 17:10:28 -06:00
parent 641be4eded
commit 00350392af
2 changed files with 2 additions and 2 deletions

View File

@ -137,7 +137,7 @@ Resources:
'enterprise': 'v1.8', 'enterprise': 'v1.8',
}; };
const archiveDomain = 'http://archive.docs.influxdata.com' const archiveDomain = 'http://archive.docs.influxdata.com';
exports.handler = (event, context, callback) => { exports.handler = (event, context, callback) => {

View File

@ -11,7 +11,7 @@ const latestVersions = {
'enterprise': 'v1.8', 'enterprise': 'v1.8',
}; };
const archiveDomain = 'http://archive.docs.influxdata.com' const archiveDomain = 'http://archive.docs.influxdata.com';
exports.handler = (event, context, callback) => { exports.handler = (event, context, callback) => {