# HG changeset patch # User Gregory Szorc # Date 2017-10-18 20:54:50 # 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 --git a/hgext/fsmonitor/__init__.py b/hgext/fsmonitor/__init__.py --- a/hgext/fsmonitor/__init__.py +++ b/hgext/fsmonitor/__init__.py @@ -162,6 +162,12 @@ configitem('fsmonitor', 'timeout', 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: