D5955: watchman: ignore some of watchman errors

lothiraldan (Boris Feld) phabricator at mercurial-scm.org
Sat Mar 16 23:57:32 UTC 2019


This revision was automatically updated to reflect the committed changes.
Closed by commit rHG76361969662a: watchman: ignore some of watchman errors (authored by lothiraldan, committed by ).

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D5955?vs=14077&id=14528

REVISION DETAIL
  https://phab.mercurial-scm.org/D5955

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, pulkit
Cc: indygreg, mercurial-devel


More information about the Mercurial-devel mailing list