Unverified Commit 9e62d114 authored by Marius van den Beek's avatar Marius van den Beek Committed by GitHub
Browse files

Merge pull request #11867 from rhpvorderman/fixwatchdog20.05

Backport to 20.05: watchdog dependency check bugfix.
parents b71a4c5b 8f324ece
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -180,7 +180,7 @@ class ConditionalDependencies(object):
        return 'irods' in self.object_stores

    def check_watchdog(self):
        install_set = {'auto', 'True', 'true', 'polling'}
        install_set = {'auto', 'True', 'true', 'polling', True}
        return (self.config['watch_tools'] in install_set or
                self.config['watch_tool_data_dir'] in install_set)