Skip to content

Commit

Permalink
fix: include inactive uploaders when fetching count
Browse files Browse the repository at this point in the history
  • Loading branch information
RolandSherwin authored and jacderida committed Nov 12, 2024
1 parent c09a3ee commit d87f274
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/funding.rs
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ impl AnsibleProvisioner {
"Fetching uploader count for {} @ {}",
vm.name, vm.public_ip_addr
);
let cmd = "systemctl list-units --type=service | grep autonomi_uploader_ | wc -l";
let cmd = "systemctl list-units --type=service --all | grep autonomi_uploader_ | wc -l";
let result = self
.ssh_client
.run_command(&vm.public_ip_addr, "root", cmd, true);
Expand Down

0 comments on commit d87f274

Please sign in to comment.