Skip to content

Commit 8aebc5d

Browse files
authored
Merge pull request #33 from houldsg/bugfix_dontSkipOtherDCs
Don't fail completely if the first domain controller fails.
2 parents 06daf45 + 4234878 commit 8aebc5d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/express-ntlm.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,8 @@ module.exports = function(options) {
121121
if (error) {
122122
proxy.close();
123123
proxy = null;
124-
return eachDomaincontrollerCallback(error);
124+
options.debug(options.prefix, error);
125+
return eachDomaincontrollerCallback();
125126
}
126127

127128
ntlm_challenge = challenge;

0 commit comments

Comments
 (0)