Skip to content

Commit 864a5db

Browse files
authored
recover: remove unused mut (#2425)
1 parent 704ef31 commit 864a5db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

linkerd/proxy/resolve/src/recover.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ where
147147
type Item = Result<Update<R::Endpoint>, Error>;
148148

149149
fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> {
150-
let mut this = self.project();
150+
let this = self.project();
151151
loop {
152152
// XXX(eliza): note that this match was originally an `if let`,
153153
// but that doesn't work with `#[project]` for some kinda reason

0 commit comments

Comments
 (0)