Merge pull request #2725 from RafaelMarinheiro/fix_grpc_query_values
authorMatthias Runge <mrunge@redhat.com>
Mon, 1 Jul 2019 07:25:33 +0000 (09:25 +0200)
committerGitHub <noreply@github.com>
Mon, 1 Jul 2019 07:25:33 +0000 (09:25 +0200)
utils_cache: fix pointer reference and meta_data ingestion

1  2 
src/daemon/utils_cache.c

@@@ -201,8 -201,12 +201,12 @@@ static int uc_insert(const data_set_t *
    ce->last_time = vl->time;
    ce->last_update = cdtime();
    ce->interval = vl->interval;
 -  ce->state = STATE_OKAY;
 +  ce->state = STATE_UNKNOWN;
  
+   if (vl->meta != NULL) {
+     ce->meta = meta_data_clone(vl->meta);
+   }
    if (c_avl_insert(cache_tree, key_copy, ce) != 0) {
      sfree(key_copy);
      ERROR("uc_insert: c_avl_insert failed.");