From 00350392af23f1139eccbf8c8f952f6941133568 Mon Sep 17 00:00:00 2001 From: Scott Anderson Date: Tue, 1 Sep 2020 17:10:28 -0600 Subject: [PATCH] added missing semicolon to lambda edge function --- deploy/docs-website.yml | 2 +- deploy/edge.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/deploy/docs-website.yml b/deploy/docs-website.yml index 798b6b6e3..5b1bd94e5 100644 --- a/deploy/docs-website.yml +++ b/deploy/docs-website.yml @@ -137,7 +137,7 @@ Resources: 'enterprise': 'v1.8', }; - const archiveDomain = 'http://archive.docs.influxdata.com' + const archiveDomain = 'http://archive.docs.influxdata.com'; exports.handler = (event, context, callback) => { diff --git a/deploy/edge.js b/deploy/edge.js index b35097763..eff75890e 100644 --- a/deploy/edge.js +++ b/deploy/edge.js @@ -11,7 +11,7 @@ const latestVersions = { 'enterprise': 'v1.8', }; -const archiveDomain = 'http://archive.docs.influxdata.com' +const archiveDomain = 'http://archive.docs.influxdata.com'; exports.handler = (event, context, callback) => {