diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-08-26 08:15:20 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-08-26 08:15:20 +0000 |
commit | 87d772a7d708fec12f48cd8adc0dedff6e1025da (patch) | |
tree | 1fee344c64cc3f43074a01981e21126c8482a522 /src/daemon/watcher.c | |
parent | Adding upstream version 1.46.3. (diff) | |
download | netdata-87d772a7d708fec12f48cd8adc0dedff6e1025da.tar.xz netdata-87d772a7d708fec12f48cd8adc0dedff6e1025da.zip |
Adding upstream version 1.47.0.upstream/1.47.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/daemon/watcher.c')
-rw-r--r-- | src/daemon/watcher.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/daemon/watcher.c b/src/daemon/watcher.c index 1e0090e24..6584073e3 100644 --- a/src/daemon/watcher.c +++ b/src/daemon/watcher.c @@ -65,6 +65,7 @@ void *watcher_main(void *arg) usec_t shutdown_start_time = now_monotonic_usec(); watcher_wait_for_step(WATCHER_STEP_ID_CREATE_SHUTDOWN_FILE); + watcher_wait_for_step(WATCHER_STEP_ID_DESTROY_MAIN_SPAWN_SERVER); watcher_wait_for_step(WATCHER_STEP_ID_DBENGINE_EXIT_MODE); watcher_wait_for_step(WATCHER_STEP_ID_CLOSE_WEBRTC_CONNECTIONS); watcher_wait_for_step(WATCHER_STEP_ID_DISABLE_MAINTENANCE_NEW_QUERIES_NEW_WEB_REQUESTS_NEW_STREAMING_CONNECTIONS_AND_ACLK); @@ -105,6 +106,8 @@ void watcher_thread_start() { watcher_steps[WATCHER_STEP_ID_CREATE_SHUTDOWN_FILE].msg = "create shutdown file"; + watcher_steps[WATCHER_STEP_ID_DESTROY_MAIN_SPAWN_SERVER].msg = + "destroy main spawn server"; watcher_steps[WATCHER_STEP_ID_DBENGINE_EXIT_MODE].msg = "dbengine exit mode"; watcher_steps[WATCHER_STEP_ID_CLOSE_WEBRTC_CONNECTIONS].msg = |