D5590: watchman: ignore some of watchman errors
lothiraldan (Boris Feld)
phabricator at mercurial-scm.org
Wed Feb 13 16:18:01 UTC 2019
lothiraldan updated this revision to Diff 14074.
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D5590?vs=14071&id=14074
REVISION DETAIL
https://phab.mercurial-scm.org/D5590
AFFECTED FILES
hgext/fsmonitor/__init__.py
CHANGE DETAILS
diff --git a/hgext/fsmonitor/__init__.py b/hgext/fsmonitor/__init__.py
--- a/hgext/fsmonitor/__init__.py
+++ b/hgext/fsmonitor/__init__.py
@@ -180,7 +180,8 @@
if isinstance(ex, watchmanclient.Unavailable):
# experimental config: fsmonitor.verbose
if ex.warn and ui.configbool('fsmonitor', 'verbose'):
- ui.warn(str(ex) + '\n')
+ if 'illegal_fstypes' not in str(ex):
+ ui.warn(str(ex) + '\n')
if ex.invalidate:
state.invalidate()
# experimental config: fsmonitor.verbose
To: lothiraldan, #hg-reviewers, indygreg
Cc: indygreg, mercurial-devel
More information about the Mercurial-devel
mailing list