Skip to content

Commit ec9e38f

Browse files
committed
do not always exclude .* from websocketfs read caching
- e.g., we want reading .gitconfig to be FAST, not 1s every single time!
1 parent c44e894 commit ec9e38f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compute/compute/lib/filesystem.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ export async function mountProject({
160160
// modified = ignore any file modified with this many seconds (at least);
161161
// also ignores any file not in the stat cache.
162162
readTrackingFile: readTrackingFile,
163-
readTrackingExclude: [".*", ...exclude],
163+
readTrackingExclude: exclude,
164164
// metadata file
165165
metadataFile,
166166
}));

0 commit comments

Comments
 (0)