Skip to content

Commit

Permalink
Fix dimension HETEROGENEOUS check (#16234)
Browse files Browse the repository at this point in the history
(cherry picked from commit 46c7e6f)
  • Loading branch information
stelfrag authored and tkatsoulas committed Oct 26, 2023
1 parent c93aa31 commit c5b46c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion database/rrddim.c
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ static void rrddim_insert_callback(const DICTIONARY_ITEM *item __maybe_unused, v
if(rrdset_number_of_dimensions(st) != 0) {
RRDDIM *td;
dfe_start_write(st->rrddim_root_index, td) {
if(!td) break;
if(td) break;
}
dfe_done(td);

Expand Down

0 comments on commit c5b46c0

Please sign in to comment.