From 529f8b50169bfd269b160555a7f51ae71fb6305c Mon Sep 17 00:00:00 2001 From: Em Sharnoff Date: Mon, 28 Aug 2023 05:55:41 -0700 Subject: [PATCH] compute_ctl: Fix switched vm-monitor args (#5117) Small switcheroo from #4946. --- compute_tools/src/bin/compute_ctl.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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