We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 347cb97 commit 989ca21Copy full SHA for 989ca21
src/gateway/bridge/shard_queuer.rs
@@ -200,6 +200,9 @@ impl ShardQueuer {
200
};
201
202
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)]
206
drop(runner.run().await);
207
debug!("[ShardRunner {:?}] Stopping", runner.shard.shard_info());
208
});
0 commit comments