Skip to content

Commit a4fdb16

Browse files
committed
Disable file hashing
1 parent 02c33bb commit a4fdb16

File tree

2 files changed

+5
-9
lines changed

2 files changed

+5
-9
lines changed

CHANGELOG.md

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,12 @@
1313

1414
- Pick up any `:deps` from `deps.local.edn` at startup, not at the first
1515
classpath reload
16-
17-
# 0.11.59-alpha (2022-10-21 / 8454771)
18-
19-
## Added
20-
21-
## Fixed
22-
16+
2317
## Changed
2418

25-
# 0.10.54-alpha (2022-10-21 / d9f021c)
19+
- Disable directory-watcher file hashing, it gets prohibitively slow
20+
21+
# 0.11.59-alpha (2022-10-21 / 8454771)
2622

2723
## Fixed
2824

src/lambdaisland/launchpad/watcher.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
(-> (DirectoryWatcher/builder)
3535
(.paths (map #(Path/of % (into-array String [])) paths))
3636
(.listener (#'beholder/fn->listener cb))
37-
#_(.fileHashing false)
37+
(.fileHashing false)
3838
(.build)))
3939

4040
(defn watch

0 commit comments

Comments
 (0)