This commit is contained in:
Peli de Halleux 2015-11-13 10:46:37 -08:00
Родитель 9768d5cdc6
Коммит 6ecf556047
1 изменённых файлов: 2 добавлений и 3 удалений

Просмотреть файл

@ -3768,10 +3768,9 @@ function uploadRaygunDeployment(version: string, commit:string, comment: string)
comment: comment,
scmIdentifier: commit
};
var req = http.request({
protocol: 'https',
var req = https.request({
host: 'app.raygun.io',
port: '80',
port: 80,
path: '/deployments',
method: "POST",
headers : { 'content-type': 'application/json; charset=utf8' }