# HG changeset patch # User Gregory Szorc # Date 1508360090 -7200 # Node ID dbb542326582dc1d08525c1305528a2f4e68eb5a # Parent df2ff314e36f3f56aa7547c20b498008d5f32c15 fsmonitor: declare missing config options These were added in 4aa57627692a. Attempting to run the test harness with fsmonitor enabled spews a whole bunch of devel warnings due to these options not be declared. Differential Revision: https://phab.mercurial-scm.org/D1176 diff -r df2ff314e36f -r dbb542326582 hgext/fsmonitor/__init__.py --- a/hgext/fsmonitor/__init__.py Wed Oct 18 22:57:15 2017 +0200 +++ b/hgext/fsmonitor/__init__.py Wed Oct 18 22:54:50 2017 +0200 @@ -162,6 +162,12 @@ configitem('fsmonitor', 'blacklistusers', default=list, ) +configitem('experimental', 'fsmonitor.transaction_notify', + default=False, +) +configitem('experimental', 'fsmonitor.wc_change_notify', + default=False, +) # This extension is incompatible with the following blacklisted extensions # and will disable itself when encountering one of these: