From c937362961ff312f845f9fd0376723305b89f94e Mon Sep 17 00:00:00 2001 From: Oliver Giles Date: Fri, 20 Apr 2018 12:54:39 +0300 Subject: [PATCH] Update comment about loading configuration files Dynamic reloading of config files was implemented in 216ecee7c5 --- src/laminar.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/laminar.cpp b/src/laminar.cpp index 0643921..2e686e2 100644 --- a/src/laminar.cpp +++ b/src/laminar.cpp @@ -92,10 +92,8 @@ Laminar::Laminar() { srv = nullptr; - // This is only a separate function because I imagined that it would - // be nice to reload some configuration during runtime without restarting - // the server completely. Currently not called from anywhere else - // TODO: implement that + // Load configuration, may be called again in response to an inotify event + // that the configuration files have been modified loadConfiguration(); }