File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ typedef struct monitor_roll_origin_s {
71
71
// Public API.
72
72
//
73
73
74
- void as_mrt_monitor_start (void );
74
+ void as_mrt_monitor_init (void );
75
75
76
76
bool as_mrt_monitor_is_monitor_set_id (const struct as_namespace_s * ns , uint32_t set_id );
77
77
bool as_mrt_monitor_is_monitor_record (const struct as_namespace_s * ns , const struct as_index_s * r );
Original file line number Diff line number Diff line change @@ -354,6 +354,9 @@ as_run(int argc, char **argv)
354
354
// initialized.
355
355
as_namespaces_init (cold_start_cmd , instance );
356
356
357
+ // Relevant for enterprise edition only.
358
+ as_mrt_monitor_init ();
359
+
357
360
// Initialize the storage system. For warm restarts, this includes fully
358
361
// resuming persisted indexes.
359
362
as_storage_init ();
@@ -421,7 +424,6 @@ as_run(int argc, char **argv)
421
424
as_ticker_start (); // only after everything else is started
422
425
423
426
// Relevant for enterprise edition only.
424
- as_mrt_monitor_start ();
425
427
as_storage_start_tomb_raider ();
426
428
427
429
// Log a service-ready message.
Original file line number Diff line number Diff line change 44
44
//
45
45
46
46
void
47
- as_mrt_monitor_start (void )
47
+ as_mrt_monitor_init (void )
48
48
{
49
49
}
50
50
You can’t perform that action at this time.
0 commit comments