Skip to content

Commit

Permalink
[TaskVine] Remove references to stats_disconnected_workers (cooperati…
Browse files Browse the repository at this point in the history
  • Loading branch information
dblitt authored Sep 23, 2024
1 parent d91c2ef commit fc4fb44
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
2 changes: 0 additions & 2 deletions taskvine/src/manager/vine_manager.c
Original file line number Diff line number Diff line change
Expand Up @@ -3772,7 +3772,6 @@ struct vine_manager *vine_ssl_create(int port, const char *key, const char *cert
q->max_task_resources_requested = rmsummary_create(-1);

q->stats = calloc(1, sizeof(struct vine_stats));
q->stats_disconnected_workers = calloc(1, sizeof(struct vine_stats));
q->stats_measure = calloc(1, sizeof(struct vine_stats));

q->workers_with_watched_file_updates = hash_table_create(0, 0);
Expand Down Expand Up @@ -4158,7 +4157,6 @@ void vine_delete(struct vine_manager *q)

free(q->runtime_directory);
free(q->stats);
free(q->stats_disconnected_workers);
free(q->stats_measure);

vine_counters_debug();
Expand Down
1 change: 0 additions & 1 deletion taskvine/src/manager/vine_manager.h
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,6 @@ struct vine_manager {

struct vine_stats *stats;
struct vine_stats *stats_measure;
struct vine_stats *stats_disconnected_workers;

/* Time of most recent events for computing various timeouts */

Expand Down

0 comments on commit fc4fb44

Please sign in to comment.