@cryptotaxi247 / netdata-1 / commits / aa8ea2fca

do not post empty reports (#19729)

Costa Tsaousis committed Feb 27, 2025 at 20:42 UTC aa8ea2fca8f50e4d86e5e3d0411c12a409cb34e4
1 file changed +2 -1
src/daemon/daemon-status-file.c
+2 -1
@@ -885,7 +885,8 @@ void daemon_status_file_check_crash(void) {
885
886 // check if we have already posted this crash in the last 24 hours
887 XXH64_hash_t hash = daemon_status_file_hash(&last_session_status, msg, cause);
888 - disable_crash_report = dedup_already_posted(hash);
888 + if(dedup_already_posted(hash))
889 + disable_crash_report = true;
890
891 if(!disable_crash_report && (analytics_check_enabled() || post_crash_report)) {
892 netdata_conf_ssl();