We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02c33bb commit a4fdb16Copy full SHA for a4fdb16
CHANGELOG.md
@@ -13,16 +13,12 @@
13
14
- Pick up any `:deps` from `deps.local.edn` at startup, not at the first
15
classpath reload
16
-
17
-# 0.11.59-alpha (2022-10-21 / 8454771)
18
19
-## Added
20
21
-## Fixed
22
+
23
## Changed
24
25
-# 0.10.54-alpha (2022-10-21 / d9f021c)
+- Disable directory-watcher file hashing, it gets prohibitively slow
+# 0.11.59-alpha (2022-10-21 / 8454771)
26
27
## Fixed
28
src/lambdaisland/launchpad/watcher.clj
@@ -34,7 +34,7 @@
34
(-> (DirectoryWatcher/builder)
35
(.paths (map #(Path/of % (into-array String [])) paths))
36
(.listener (#'beholder/fn->listener cb))
37
- #_(.fileHashing false)
+ (.fileHashing false)
38
(.build)))
39
40
(defn watch
0 commit comments