@@ -56,16 +56,6 @@ var warning = 'Warning: connect.session() MemoryStore is not\n'
56
56
+ 'designed for a production environment, as it will leak\n'
57
57
+ 'memory, and will not scale past a single process.' ;
58
58
59
- /**
60
- * Node.js 0.8+ async implementation.
61
- * @private
62
- */
63
-
64
- /* istanbul ignore next */
65
- var defer = typeof setImmediate === 'function'
66
- ? setImmediate
67
- : function ( fn ) { process . nextTick ( fn . bind . apply ( fn , arguments ) ) }
68
-
69
59
/**
70
60
* Setup session store with the given `options`.
71
61
*
@@ -247,7 +237,7 @@ function session(options) {
247
237
try {
248
238
setcookie ( res , name , req . sessionID , secrets [ 0 ] , req . session . cookie . data )
249
239
} catch ( err ) {
250
- defer ( next , err )
240
+ setImmediate ( next , err )
251
241
}
252
242
} ) ;
253
243
@@ -317,7 +307,7 @@ function session(options) {
317
307
debug ( 'destroying' ) ;
318
308
store . destroy ( req . sessionID , function ondestroy ( err ) {
319
309
if ( err ) {
320
- defer ( next , err ) ;
310
+ setImmediate ( next , err ) ;
321
311
}
322
312
323
313
debug ( 'destroyed' ) ;
@@ -342,7 +332,7 @@ function session(options) {
342
332
if ( shouldSave ( req ) ) {
343
333
req . session . save ( function onsave ( err ) {
344
334
if ( err ) {
345
- defer ( next , err ) ;
335
+ setImmediate ( next , err ) ;
346
336
}
347
337
348
338
writeend ( ) ;
@@ -354,7 +344,7 @@ function session(options) {
354
344
debug ( 'touching' ) ;
355
345
store . touch ( req . sessionID , req . session , function ontouch ( err ) {
356
346
if ( err ) {
357
- defer ( next , err ) ;
347
+ setImmediate ( next , err ) ;
358
348
}
359
349
360
350
debug ( 'touched' ) ;
0 commit comments