Merge pull request #109 from mkelley82/patch-2

Update snippet to reflect HTTPS usage instead of HTTP
This commit is contained in:
Pēteris Caune 2017-01-02 22:27:01 +02:00 committed by GitHub
commit ac57a4414e

View File

@ -1,2 +1,2 @@
var http = require('http');
http.get("PING_URL");
var https = require('https');
https.get("PING_URL");