From 89fc7b443aef3bdfe7996fc024a86e3ec8661562 Mon Sep 17 00:00:00 2001 From: Annika Hannig Date: Mon, 28 Feb 2022 14:39:13 +0000 Subject: [PATCH] simplified expression --- cmd/alice-lg/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/alice-lg/main.go b/cmd/alice-lg/main.go index 3f17fb6..41554bc 100644 --- a/cmd/alice-lg/main.go +++ b/cmd/alice-lg/main.go @@ -120,7 +120,7 @@ func main() { log.Println("Using configuration:", cfg.File) // Start stores - if cfg.Server.EnablePrefixLookup == true { + if cfg.Server.EnablePrefixLookup { go neighborsStore.Start() go routesStore.Start() }