diff --git a/src/auth/oauth2/mod.rs b/src/auth/oauth2/mod.rs index 540b69e..4be09d9 100644 --- a/src/auth/oauth2/mod.rs +++ b/src/auth/oauth2/mod.rs @@ -96,10 +96,14 @@ impl Inner { $field: $field.clone(), )* }; + cx.waker().wake_by_ref(); break Poll::Pending; } }, - Poll::Pending => break Poll::Pending, + Poll::Pending => { + cx.waker().wake_by_ref(); + break Poll::Pending; + } } }; }