D5590: watchman: ignore some of watchman errors

lothiraldan (Boris Feld) phabricator at mercurial-scm.org
Thu Jan 24 12:40:55 EST 2019


lothiraldan updated this revision to Diff 13415.

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D5590?vs=13226&id=13415

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
@@ -183,7 +183,8 @@
     if isinstance(ex, watchmanclient.Unavailable):
         # experimental config: hgwatchman.verbose
         if ex.warn and ui.configbool('hgwatchman', '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: hgwatchman.verbose



To: lothiraldan, #hg-reviewers, indygreg
Cc: indygreg, mercurial-devel


More information about the Mercurial-devel mailing list