From 62ffdb46d2c9f560ed5b91f35a7c48bf55af9233 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristoffer=20Lund=C3=A9n?= Date: Thu, 29 Sep 2016 16:01:28 +0200 Subject: [PATCH] Fix path to local http-proxy in examples. --- examples/http/ntlm-authentication.js | 2 +- examples/http/reverse-proxy.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/http/ntlm-authentication.js b/examples/http/ntlm-authentication.js index f18f2cbfc..808eaa0ef 100644 --- a/examples/http/ntlm-authentication.js +++ b/examples/http/ntlm-authentication.js @@ -1,4 +1,4 @@ -var httpProxy = require('http-proxy'); +var httpProxy = require('../../lib/http-proxy'); var Agent = require('agentkeepalive'); var agent = new Agent({ diff --git a/examples/http/reverse-proxy.js b/examples/http/reverse-proxy.js index 1e80d4e93..75e0dd9de 100644 --- a/examples/http/reverse-proxy.js +++ b/examples/http/reverse-proxy.js @@ -23,7 +23,7 @@ var http = require('http'), net = require('net'), - httpProxy = require('http-proxy'), + httpProxy = require('../../lib/http-proxy'); url = require('url'), util = require('util');