File tree 3 files changed +18
-1
lines changed
3 files changed +18
-1
lines changed Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ function Fetch(url, opts) {
74
74
headers . set ( 'user-agent' , 'node-fetch/1.0 (+https://github.com/bitinn/node-fetch)' ) ;
75
75
}
76
76
77
- if ( ! headers . has ( 'connection' ) ) {
77
+ if ( ! headers . has ( 'connection' ) && ! options . agent ) {
78
78
headers . set ( 'connection' , 'close' ) ;
79
79
}
80
80
Original file line number Diff line number Diff line change @@ -15,6 +15,9 @@ function TestServer() {
15
15
this . server . on ( 'error' , function ( err ) {
16
16
console . log ( err . stack ) ;
17
17
} ) ;
18
+ this . server . on ( 'connection' , function ( socket ) {
19
+ socket . setTimeout ( 1500 ) ;
20
+ } ) ;
18
21
}
19
22
20
23
TestServer . prototype . start = function ( cb ) {
Original file line number Diff line number Diff line change @@ -950,6 +950,20 @@ describe('node-fetch', function() {
950
950
} ) ;
951
951
} ) ;
952
952
953
+ it ( 'should send request with connection keep-alive if agent is provided' , function ( ) {
954
+ url = base + '/inspect' ;
955
+ opts = {
956
+ agent : new http . Agent ( {
957
+ keepAlive : true
958
+ } )
959
+ } ;
960
+ return fetch ( url , opts ) . then ( function ( res ) {
961
+ return res . json ( ) ;
962
+ } ) . then ( function ( res ) {
963
+ expect ( res . headers [ 'connection' ] ) . to . equal ( 'keep-alive' ) ;
964
+ } ) ;
965
+ } ) ;
966
+
953
967
it ( 'should ignore unsupported attributes while reading headers' , function ( ) {
954
968
var FakeHeader = function ( ) { } ;
955
969
// prototypes are ignored
You can’t perform that action at this time.
0 commit comments