summaryrefslogtreecommitdiffstats
path: root/database/rrdset.c
diff options
context:
space:
mode:
authorMarkos Fountoulakis <44345837+mfundul@users.noreply.github.com>2020-06-16 21:57:46 +0300
committerGitHub <noreply@github.com>2020-06-16 21:57:46 +0300
commited2d5542cc6000d80a7d4377435cc175cfd519e4 (patch)
tree4f823c068cc87f10b00c64d02e3b56de1255b84c /database/rrdset.c
parent36d5e40dca91a93963e4d96f07af3e38803615d0 (diff)
Replace assert calls (#9349)
* Replace all assert() calls with the new fatal_assert() for proper logging.
Diffstat (limited to 'database/rrdset.c')
-rw-r--r--database/rrdset.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/database/rrdset.c b/database/rrdset.c
index 9bce32e528..9fc4009aff 100644
--- a/database/rrdset.c
+++ b/database/rrdset.c
@@ -927,7 +927,7 @@ RRDSET *rrdset_create_custom(
error("FAILED to generate GUID for %s", st->id);
freez(st->chart_uuid);
st->chart_uuid = NULL;
- assert(0);
+ fatal_assert(0);
}
st->compaction_id = 0;
}