Skip to content

Commit 09eb70a

Browse files
diliopfacebook-github-bot
authored andcommitted
Update platform010 & platform010-aarch64 symlinks
Summary: `1.76.0` release with fixes addressing the following: * Release notes ([link](https://releases.rs/docs/1.76.0/)) * Most notable is [#118054](rust-lang/rust#118054) manifesting as: ``` error: unused implementer of `futures::Future` that must be used --> fbcode/mlx/metalearner/housekeeper/housekeeper.rs:213:13 | 213 | self.ping_oncall(&oncall, usecases); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: futures do nothing unless you `.await` or poll them = note: requested on the command line with `-D unused-must-use` ``` * Changes in `search_index.js` spec for `rustdoc` ([link](https://github.com/rust-lang/rust/pull/118910/files#diff-3ac57789ddcd2856a3b4f0c444f2813315179bdbe55bb945fe64fcb27b53fee5L491)) * Split of `#![feature(exposed_provenance)]` ([link](rust-lang/rust#118487)) from [#95228](rust-lang/rust#95228) * `buck2` OSS toolchain bump to `nightly-2023-12-11` just before [#11878](rust-lang/rust-clippy#11878) and a bunch of other clippy lint renames. Reviewed By: dtolnay Differential Revision: D53776867 fbshipit-source-id: 78db83d8cdd6b0abae2b94ed1075e67b501fcd73
1 parent c41135d commit 09eb70a

File tree

3 files changed

+7
-9
lines changed

3 files changed

+7
-9
lines changed

eden/fs/cli_rs/edenfs-commands/src/minitop.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,7 @@ impl crate::Subcommand for MinitopCmd {
435435
if self.interactive {
436436
queue!(stdout, terminal::Clear(terminal::ClearType::All))?;
437437
}
438-
client.flushStatsNow();
438+
client.flushStatsNow().await?;
439439
system.refresh_processes();
440440
cursor.refresh_terminal_size()?;
441441

@@ -577,7 +577,7 @@ mod unix {
577577

578578
use anyhow::anyhow;
579579
use anyhow::Result;
580-
use shlex::quote;
580+
use shlex::try_quote;
581581

582582
pub fn trim_cmd_binary_path(cmd: &str) -> Result<String> {
583583
let mut parts: Vec<&str> = cmd.split(char::from(0)).collect();
@@ -598,7 +598,7 @@ mod unix {
598598
// the first item is the cmd
599599
String::from(part)
600600
} else {
601-
quote(part).into_owned()
601+
try_quote(part).unwrap().into_owned()
602602
}
603603
})
604604
.collect::<Vec<String>>()

eden/mononoke/mononoke_configs/src/lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55
* GNU General Public License version 2.
66
*/
77

8-
#![feature(arc_unwrap_or_clone)]
9-
108
use std::path::Path;
119
use std::sync::Arc;
1210

eden/scm/lib/copytrace/src/tests.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -377,10 +377,10 @@ async fn test_linear_multiple_renames_with_deletes() {
377377
let c = t.copy_trace().await;
378378

379379
assert_trace_rename!(c A X, a -> d);
380-
assert_trace_rename!(c A Z, a -> !-Z d);
380+
assert_trace_rename!(c A Z, a -> ! - Z d);
381381

382382
assert_trace_rename!(c Z B, b2 -> b2);
383-
assert_trace_rename!(c Z A, b2 -> !+B b2);
383+
assert_trace_rename!(c Z A, b2 -> ! + B b2);
384384
}
385385

386386
#[tokio::test(flavor = "multi_thread", worker_threads = 2)]
@@ -440,8 +440,8 @@ async fn test_non_linear_multiple_renames_with_deletes() {
440440
let c = t.copy_trace().await;
441441

442442
assert_trace_rename!(c Z 1000, a2 -> d);
443-
assert_trace_rename!(c Z 1001, a2 -> !-1001 d);
444-
assert_trace_rename!(c Z 1023, a2 -> !-1001 d);
443+
assert_trace_rename!(c Z 1001, a2 -> ! - 1001 d);
444+
assert_trace_rename!(c Z 1023, a2 -> ! - 1001 d);
445445
}
446446

447447
#[tokio::test(flavor = "multi_thread", worker_threads = 2)]

0 commit comments

Comments
 (0)