We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e331b2f commit d7ad679Copy full SHA for d7ad679
1 file changed
crates/core/src/host/host_controller.rs
@@ -886,7 +886,11 @@ impl Host {
886
let disk_metrics_recorder_task = tokio::spawn(metric_reporter(replica_ctx.clone())).abort_handle();
887
888
let module = watch::Sender::new(module_host);
889
- replica_ctx.subscriptions.init(module.subscribe());
+ //TODO(shub): Below code interfere with `exit_module` code,
890
+ // I suspect channel internally holds a reference to the module,
891
+ // even after we drop the sender.
892
+ //
893
+ // replica_ctx.subscriptions.init(module.subscribe());
894
Ok(Host {
895
module,
896
replica_ctx,
0 commit comments