Skip to content

Commit 989ca21

Browse files
committed
allow large future
1 parent 347cb97 commit 989ca21

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/gateway/bridge/shard_queuer.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -200,6 +200,9 @@ impl ShardQueuer {
200200
};
201201

202202
spawn_named("shard_queuer::stop", async move {
203+
// just over the large futures threshold but refactoring this is not worth the time for
204+
// something so low impact
205+
#[allow(clippy::large_futures)]
203206
drop(runner.run().await);
204207
debug!("[ShardRunner {:?}] Stopping", runner.shard.shard_info());
205208
});

0 commit comments

Comments
 (0)