File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,10 @@ export class NtlmCredentialHandler implements VsoBaseInterfaces.IRequestHandler
2727
2828 prepareRequest ( options :any ) : void {
2929 // No headers or options need to be set. We keep the credentials on the handler itself.
30+ // If a (proxy) agent is set, remove it as we don't support proxy for NTLM at this time
31+ if ( options . agent ) {
32+ delete options . agent ;
33+ }
3034 }
3135
3236 canHandleAuthentication ( res : VsoBaseInterfaces . IHttpResponse ) : boolean {
Original file line number Diff line number Diff line change 11{
22 "name" : " vso-node-api" ,
33 "description" : " Node client for Visual Studio Online/TFS REST APIs" ,
4- "version" : " 5.1.0 " ,
4+ "version" : " 5.1.1 " ,
55 "main" : " ./WebApi.js" ,
66 "typings" : " ./WebApi.d.ts" ,
77 "scripts" : {
You can’t perform that action at this time.
0 commit comments