From a8f2306724dc58f9c5d728097a50b9fc3ec06ee3 Mon Sep 17 00:00:00 2001 From: Michael Kelley Date: Mon, 2 Jan 2017 13:42:11 -0500 Subject: [PATCH] Update snippet to reflect HTTPS usage instead of HTTP --- templates/front/snippets/node.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/front/snippets/node.txt b/templates/front/snippets/node.txt index 3df15df0..5728ac5b 100644 --- a/templates/front/snippets/node.txt +++ b/templates/front/snippets/node.txt @@ -1,2 +1,2 @@ -var http = require('http'); -http.get("PING_URL"); \ No newline at end of file +var https = require('https'); +https.get("PING_URL");