Skip to content

Commit

Permalink
fix(generate-event): Remove two remaining cases of double mustache (#…
Browse files Browse the repository at this point in the history
…1389)

Everything switched to triple mustache in #824 except for these two
occurrences.
  • Loading branch information
willyg302 authored and sanathkr committed Aug 30, 2019
1 parent 9b13e93 commit 32cf6be
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
"US"
],
"Host": [
"0123456789.execute-api.{{dns_suffix}}"
"0123456789.execute-api.{{{dns_suffix}}}"
],
"Upgrade-Insecure-Requests": [
"1"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
},
{
"name": "Received",
"value": "from mailer.example.com (mailer.example.com [203.0.113.1]) by inbound-smtp.{{dns_suffix}} with SMTP id o3vrnil0e2ic28trm7dfhrc2v0cnbeccl4nbp0g1 for johndoe@example.com; Wed, 07 Oct 2015 12:34:56 +0000 (UTC)"
"value": "from mailer.example.com (mailer.example.com [203.0.113.1]) by inbound-smtp.{{{dns_suffix}}} with SMTP id o3vrnil0e2ic28trm7dfhrc2v0cnbeccl4nbp0g1 for johndoe@example.com; Wed, 07 Oct 2015 12:34:56 +0000 (UTC)"
},
{
"name": "DKIM-Signature",
Expand Down

0 comments on commit 32cf6be

Please sign in to comment.