Skip to content

Commit

Permalink
build: bump sysinfo from 0.31.4 to 0.32.0
Browse files Browse the repository at this point in the history
Bumps [sysinfo](https://github.com/GuillaumeGomez/sysinfo) from 0.31.4 to 0.32.0.
- [Changelog](https://github.com/GuillaumeGomez/sysinfo/blob/master/CHANGELOG.md)
- [Commits](GuillaumeGomez/sysinfo@v0.31.4...v0.32.0)

---
updated-dependencies:
- dependency-name: sysinfo
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored and SanjoDeundiak committed Nov 12, 2024
1 parent 04815e5 commit 5ac0612
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion implementations/rust/ockam/ockam_api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ sqlx = { version = "0.8.2", default-features = false }
strip-ansi-escapes = "0.2"
strum = { version = "0.26.3", default-features = false, features = ["derive"] }
syntect = { version = "5.2.0", default-features = false, features = ["default-syntaxes", "regex-onig"] }
sysinfo = "0.31"
sysinfo = "0.32"
termbg = "0.5.2"
thiserror = "1.0"
time = { version = "0.3.36", default-features = false, features = ["std", "formatting", "local-offset", "macros"] }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -656,7 +656,7 @@ impl NodeInfo {
pub fn status(&self) -> NodeProcessStatus {
if let Some(pid) = self.pid() {
let mut sys = System::new();
sys.refresh_processes(ProcessesToUpdate::All);
sys.refresh_processes(ProcessesToUpdate::All, false);
if let Some(p) = sys.process(Pid::from_u32(pid)) {
// Under certain circumstances the process can be in a state where it's not running
// and we are unable to kill it. For example, `kill -9` a process created by
Expand Down

0 comments on commit 5ac0612

Please sign in to comment.