Skip to content

Commit

Permalink
chore(wrangler): cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Janis committed Nov 14, 2020
1 parent 14fc5ca commit 359595b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/functions/helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ export async function notifySlack(monitor, newMetadata) {
type: 'mrkdwn',
text: `${
newMetadata.operational ? ':white_check_mark:' : ':x:'
} \`${monitor.method} ${monitor.url}\` - :eyes: <${
} \`${monitor.method ? monitor.method : "GET"} ${monitor.url}\` - :eyes: <${
config.settings.url
}|Status Page>`,
},
Expand Down
2 changes: 1 addition & 1 deletion wrangler.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ entry-point = "./"

# uncomment and adjust following if you are not using GitHub Actions
#[env.production]
#kv-namespaces = [{binding="KV_GITHUB_RELEASES", id="xxxx", preview_id=""}]
#kv-namespaces = [{binding="KV_STATUS_PAGE", id="xxxx", preview_id=""}]
#zone_id="xxx"
#route="xxx"

0 comments on commit 359595b

Please sign in to comment.