Skip to content

Commit 5ce2a57

Browse files
committed
fix(krb5-provision-keytab): disambiguate into_future in CredentialCache
Explicitly selecting TryFutureExt::into_future
1 parent fd0995b commit 5ce2a57

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

rust/krb5-provision-keytab/src/credential_cache.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,10 +94,9 @@ impl CredentialCache {
9494
.expect("key was just confirmed to exist in cache")))
9595
} else {
9696
tracing::info!("credential not found in cache, generating...");
97-
match mk_value(Ctx {
97+
match TryFutureExt::into_future(mk_value(Ctx {
9898
cache_ref: self.cache_ref.clone(),
99-
})
100-
.into_future()
99+
}))
101100
.await
102101
{
103102
Ok(value) => {

0 commit comments

Comments
 (0)