Skip to content

Commit bec532a

Browse files
committed
Don't set maxAge
1 parent fb8cdf6 commit bec532a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/index.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,7 @@ const extension: JupyterFrontEndPlugin<void> = {
107107
[cellId: string]: ICellExecutionMetadata;
108108
} = {};
109109
const recentNotebookExecutionTimes: LRU<string, Date> = new LRU({
110-
max: 500,
111-
maxAge: 1000 * 60 * 60 * 10 // 10 hours
110+
max: 500
112111
});
113112

114113
if (settingRegistry) {

0 commit comments

Comments
 (0)