Skip to content

Commit

Permalink
Update platform010 & platform010-aarch64 symlinks
Browse files Browse the repository at this point in the history
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
  • Loading branch information
diliop authored and facebook-github-bot committed Feb 20, 2024
1 parent c41135d commit 09eb70a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 9 deletions.
6 changes: 3 additions & 3 deletions eden/fs/cli_rs/edenfs-commands/src/minitop.rs
Expand Up @@ -435,7 +435,7 @@ impl crate::Subcommand for MinitopCmd {
if self.interactive {
queue!(stdout, terminal::Clear(terminal::ClearType::All))?;
}
client.flushStatsNow();
client.flushStatsNow().await?;
system.refresh_processes();
cursor.refresh_terminal_size()?;

Expand Down Expand Up @@ -577,7 +577,7 @@ mod unix {

use anyhow::anyhow;
use anyhow::Result;
use shlex::quote;
use shlex::try_quote;

pub fn trim_cmd_binary_path(cmd: &str) -> Result<String> {
let mut parts: Vec<&str> = cmd.split(char::from(0)).collect();
Expand All @@ -598,7 +598,7 @@ mod unix {
// the first item is the cmd
String::from(part)
} else {
quote(part).into_owned()
try_quote(part).unwrap().into_owned()
}
})
.collect::<Vec<String>>()
Expand Down
2 changes: 0 additions & 2 deletions eden/mononoke/mononoke_configs/src/lib.rs
Expand Up @@ -5,8 +5,6 @@
* GNU General Public License version 2.
*/

#![feature(arc_unwrap_or_clone)]

use std::path::Path;
use std::sync::Arc;

Expand Down
8 changes: 4 additions & 4 deletions eden/scm/lib/copytrace/src/tests.rs
Expand Up @@ -377,10 +377,10 @@ async fn test_linear_multiple_renames_with_deletes() {
let c = t.copy_trace().await;

assert_trace_rename!(c A X, a -> d);
assert_trace_rename!(c A Z, a -> !-Z d);
assert_trace_rename!(c A Z, a -> ! - Z d);

assert_trace_rename!(c Z B, b2 -> b2);
assert_trace_rename!(c Z A, b2 -> !+B b2);
assert_trace_rename!(c Z A, b2 -> ! + B b2);
}

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

assert_trace_rename!(c Z 1000, a2 -> d);
assert_trace_rename!(c Z 1001, a2 -> !-1001 d);
assert_trace_rename!(c Z 1023, a2 -> !-1001 d);
assert_trace_rename!(c Z 1001, a2 -> ! - 1001 d);
assert_trace_rename!(c Z 1023, a2 -> ! - 1001 d);
}

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

0 comments on commit 09eb70a

Please sign in to comment.