From a29037a0e28540d8552ab46bc24618b1ca0ffefa Mon Sep 17 00:00:00 2001 From: ed Date: Wed, 25 Feb 2026 15:27:03 +0000 Subject: [PATCH] warn that reload doesn't do global-options --- copyparty/svchub.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/copyparty/svchub.py b/copyparty/svchub.py index ab02cbb3..929392f7 100644 --- a/copyparty/svchub.py +++ b/copyparty/svchub.py @@ -1439,7 +1439,7 @@ class SvcHub(object): self.log("root", "ssdp startup failed;\n" + min_ex(), 3) def reload(self, rescan_all_vols: bool, up2k: bool) -> str: - t = "config has been reloaded" + t = "users, volumes, and volflags have been reloaded" with self.reload_mutex: self.log("root", "reloading config") self.asrv.reload(9 if up2k else 4) @@ -1449,6 +1449,7 @@ class SvcHub(object): t += "; volumes are now reinitializing" else: self.log("root", "reload done") + t += "\n\nchanges to global options (if any) require a restart of copyparty to take effect" self.broker.reload() return t