From 5e4aed7e0f15b9caf865a6686e91b86a9c2ae2da Mon Sep 17 00:00:00 2001 From: Nocturn9x Date: Mon, 31 Jan 2022 14:58:29 +0100 Subject: [PATCH] Added comment about new reload operation in mainloop --- src/core/mainloop.nim | 1 + 1 file changed, 1 insertion(+) diff --git a/src/core/mainloop.nim b/src/core/mainloop.nim index d89b963..d79cf43 100644 --- a/src/core/mainloop.nim +++ b/src/core/mainloop.nim @@ -51,6 +51,7 @@ proc mainLoop*(logger: Logger, config: NimDConfig, startServices: bool = true) = # - 'r' -> reboot # - 'h' -> halt # - 's' -> Services-related operations (start, stop, get status, etc.) + # - 'l' -> Reload in-memory configuration case opType: of "p": logger.info("Received shutdown request")