Skip to content

Commit

Permalink
compute_ctl: Fix switched vm-monitor args (#5117)
Browse files Browse the repository at this point in the history
Small switcheroo from #4946.
  • Loading branch information
sharnoff authored Aug 28, 2023
1 parent fbcd174 commit 529f8b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions compute_tools/src/bin/compute_ctl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -278,8 +278,8 @@ fn main() -> Result<()> {
use tokio_util::sync::CancellationToken;
use tracing::warn;
let vm_monitor_addr = matches.get_one::<String>("vm-monitor-addr");
let cgroup = matches.get_one::<String>("filecache-connstr");
let file_cache_connstr = matches.get_one::<String>("cgroup");
let file_cache_connstr = matches.get_one::<String>("filecache-connstr");
let cgroup = matches.get_one::<String>("cgroup");

// Only make a runtime if we need to.
// Note: it seems like you can make a runtime in an inner scope and
Expand Down

1 comment on commit 529f8b5

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

1692 tests run: 1611 passed, 0 failed, 81 skipped (full report)


The comment gets automatically updated with the latest test results
529f8b5 at 2023-08-28T13:36:10.709Z :recycle:

Please sign in to comment.