aboutsummaryrefslogtreecommitdiffstats
path: root/worker/handlers/register.go
diff options
context:
space:
mode:
authorRobin Jarry <robin@jarry.cc>2023-03-09 22:26:03 +0100
committerRobin Jarry <robin@jarry.cc>2023-03-10 09:19:09 +0100
commit60078b8452867c9ab40c9623ef63169bdb090c83 (patch)
treef4ea0a0b0cbeac06a3262d042826b2a8484bc1fc /worker/handlers/register.go
parent5ae7a23e1ec99f1e552967ed9d058133b6c860c6 (diff)
downloadaerc-60078b8452867c9ab40c9623ef63169bdb090c83.tar.gz
fswatcher: fix bsd support
Fix the following error when running maildir on freebsd: could not create file system watcher: Unsupported OS: freebsd Do not register based on os type. Register based on supported API. Rename linux -> inotify and darwin -> fsevents. Only build fsevents on darwin, and inotify on all other platforms. Fixes: a0935a3de0ce ("worker/lib: implement an fswatcher interface") Reported-by: Jens Grassel <jens@wegtam.com> Signed-off-by: Robin Jarry <robin@jarry.cc> Tested-by: Jens Grassel <jens@wegtam.com>
Diffstat (limited to 'worker/handlers/register.go')
-rw-r--r--worker/handlers/register.go12
1 files changed, 6 insertions, 6 deletions
diff --git a/worker/handlers/register.go b/worker/handlers/register.go
index c94a256e..4123665f 100644
--- a/worker/handlers/register.go
+++ b/worker/handlers/register.go
@@ -29,15 +29,15 @@ func GetHandlerForScheme(scheme string, worker *types.Worker) (types.Backend, er
type WatcherFactoryFunc func() (types.FSWatcher, error)
-var watcherFactories map[string]WatcherFactoryFunc = make(map[string]WatcherFactoryFunc)
+var watcherFactory WatcherFactoryFunc
-func RegisterWatcherFactory(os string, fn WatcherFactoryFunc) {
- watcherFactories[os] = fn
+func RegisterWatcherFactory(fn WatcherFactoryFunc) {
+ watcherFactory = fn
}
func NewWatcher() (types.FSWatcher, error) {
- if fn, ok := watcherFactories[runtime.GOOS]; ok {
- return fn()
+ if watcherFactory == nil {
+ return nil, fmt.Errorf("Unsupported OS: %s", runtime.GOOS)
}
- return nil, fmt.Errorf("Unsupported OS: %s", runtime.GOOS)
+ return watcherFactory()
}