diff --git a/compute_tools/src/bin/compute_ctl.rs b/compute_tools/src/bin/compute_ctl.rs index 7fdae1f096..b330dafa99 100644 --- a/compute_tools/src/bin/compute_ctl.rs +++ b/compute_tools/src/bin/compute_ctl.rs @@ -278,8 +278,8 @@ fn main() -> Result<()> { use tokio_util::sync::CancellationToken; use tracing::warn; let vm_monitor_addr = matches.get_one::("vm-monitor-addr"); - let cgroup = matches.get_one::("filecache-connstr"); - let file_cache_connstr = matches.get_one::("cgroup"); + let file_cache_connstr = matches.get_one::("filecache-connstr"); + let cgroup = matches.get_one::("cgroup"); // Only make a runtime if we need to. // Note: it seems like you can make a runtime in an inner scope and