Skip to content

Commit d8fc982

Browse files
authored
Upgrade to Rust 1.92 (#6071)
1 parent bfc0f70 commit d8fc982

File tree

4 files changed

+2
-5
lines changed

4 files changed

+2
-5
lines changed

quickwit/quickwit-actors/src/actor.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ use std::sync::Arc;
1818

1919
use async_trait::async_trait;
2020
use thiserror::Error;
21-
use tracing::error;
2221

2322
use crate::{ActorContext, QueueCapacity, SendError};
2423

quickwit/quickwit-indexing/src/source/ingest/mod.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -410,9 +410,8 @@ impl IngestSource {
410410
.assigned_shards
411411
.keys()
412412
.filter(|&shard_id| !new_assigned_shard_ids.contains(shard_id))
413-
.cloned()
414413
.any(|removed_shard_id| {
415-
let Some(assigned_shard) = self.assigned_shards.get(&removed_shard_id) else {
414+
let Some(assigned_shard) = self.assigned_shards.get(removed_shard_id) else {
416415
return false;
417416
};
418417
assigned_shard.status != IndexingStatus::Complete

quickwit/quickwit-serve/src/otlp_api/rest_handler.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ use quickwit_proto::opentelemetry::proto::collector::trace::v1::{
2525
use quickwit_proto::types::IndexId;
2626
use quickwit_proto::{ServiceError, ServiceErrorCode, tonic};
2727
use serde::{self, Serialize};
28-
use tracing::error;
2928
use warp::{Filter, Rejection};
3029

3130
use crate::decompression::get_body_bytes;

quickwit/rust-toolchain.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[toolchain]
2-
channel = "1.91"
2+
channel = "1.92"
33
components = ["cargo", "clippy", "rustfmt", "rust-docs"]
44

0 commit comments

Comments
 (0)