diff --git a/compute_tools/src/compute.rs b/compute_tools/src/compute.rs index b200720034..4ea6bf9987 100644 --- a/compute_tools/src/compute.rs +++ b/compute_tools/src/compute.rs @@ -744,14 +744,10 @@ impl ComputeNode { // 'Close' connection drop(client); - /* - thread::spawn( - move || - { - let mut client = Client::connect(connstr.as_str(), NoTls)?; - handle_migrations(&mut client) - }); - */ + thread::spawn(move || { + let mut client = Client::connect(connstr.as_str(), NoTls)?; + handle_migrations(&mut client) + }); Ok(()) }