From patchwork Sat Mar 16 23:57:32 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: D5955: watchman: ignore some of watchman errors From: phabricator X-Patchwork-Id: 39298 Message-Id: <2aa14a68735548c809328ee0e3866e8d@localhost.localdomain> To: mercurial-devel@mercurial-scm.org Date: Sat, 16 Mar 2019 23:57:32 +0000 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 To: lothiraldan, #hg-reviewers, pulkit Cc: indygreg, mercurial-devel 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