Skip to content

Commit

Permalink
typo in unlink
Browse files Browse the repository at this point in the history
  • Loading branch information
wespen committed Apr 16, 2015
1 parent 44488fd commit 79d1a02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/reap-worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ function destroyIfExpired(sessionId) {
var isExpired = expired(sessionId);
if (isExpired != null && isExpired) {
console.log ("[session-file-store Worker] Deleting session " + sessionId);
fs.unlinkSync(path.join(this.path, sessionId + '.json'));
fs.unlinkSync(mdlPath.join(this.path, sessionId + '.json'));
}
}

Expand Down

0 comments on commit 79d1a02

Please sign in to comment.