Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Backport 2.x] Update sysinfo requirement from 0.32.0 to 0.33.0 (#292) #293

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
### Added

### Dependencies
- Bumps `sysinfo` from 0.31.2 to 0.32.0
- Bumps `sysinfo` from 0.31.2 to 0.33.0

### Changed

Expand Down Expand Up @@ -87,4 +87,4 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
[Unreleased]: https://github.com/opensearch-project/opensearch-rs/compare/v2.3.0...HEAD
[2.3.0]: https://github.com/opensearch-project/opensearch-rs/compare/v2.2.0...v2.3.0
[2.2.0]: https://github.com/opensearch-project/opensearch-rs/compare/v2.1.0...v2.2.0
[2.1.0]: https://github.com/opensearch-project/opensearch-rs/compare/v2.0.0...v2.1.0
[2.1.0]: https://github.com/opensearch-project/opensearch-rs/compare/v2.0.0...v2.1.0
2 changes: 1 addition & 1 deletion opensearch/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ futures = "0.3.1"
http-body-util = "0.1.0"
hyper = { version = "1", features = ["full"] }
hyper-util = { version = "0.1", features = ["full"] }
sysinfo = "0.32.0"
sysinfo = "0.33.0"
test-case = "3"
textwrap = "0.16"
tokio = { version = "1", features = ["full"] }
Expand Down
2 changes: 1 addition & 1 deletion opensearch/examples/cat_indices.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ fn create_client() -> Result<OpenSearch, Error> {
/// Determines if Fiddler.exe proxy process is running
fn running_proxy() -> bool {
let system = System::new_with_specifics(
RefreshKind::new().with_processes(ProcessRefreshKind::default()),
RefreshKind::nothing().with_processes(ProcessRefreshKind::default()),
);
let has_fiddler = system
.processes_by_name(OsStr::new("Fiddler"))
Expand Down
2 changes: 1 addition & 1 deletion opensearch/tests/common/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ pub fn cluster_addr() -> String {
/// Checks if Fiddler proxy process is running
fn running_proxy() -> bool {
let system = System::new_with_specifics(
RefreshKind::new().with_processes(ProcessRefreshKind::default()),
RefreshKind::nothing().with_processes(ProcessRefreshKind::default()),
);
let has_fiddler = system
.processes_by_name(OsStr::new("Fiddler"))
Expand Down
2 changes: 1 addition & 1 deletion yaml_test_runner/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ serde_yaml = "0.9"
serde_json = { version = "1", features = ["arbitrary_precision"] }
simple_logger = "5.0.0"
syn = { version = "2.0", features = ["full"] }
sysinfo = "0.32"
sysinfo = "0.33"
url = "2.1.1"
tar = "0.4"
flate2 = "1"
Expand Down
Loading