Skip to content

Commit 169e177

Browse files
committed
temp
1 parent 714a29a commit 169e177

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

asyncgit/src/sync/remotes/callbacks.rs

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#![allow(unused_imports, unused)]
12
use super::push::ProgressNotification;
23
use crate::{error::Result, sync::cred::BasicAuthCredential};
34
use crossbeam_channel::Sender;
@@ -83,11 +84,13 @@ impl Callbacks {
8384
let this = self.clone();
8485
callbacks.credentials(
8586
move |url, username_from_url, allowed_types| {
86-
this.credentials(
87+
let cred = this.credentials(
8788
url,
8889
username_from_url,
8990
allowed_types,
90-
)
91+
);
92+
// log::debug!("{:?}", &cred);
93+
cred
9194
},
9295
);
9396

@@ -193,7 +196,7 @@ impl Callbacks {
193196
allowed_types
194197
);
195198

196-
// This boolean is used to avoid multiple calls to credentials callback.
199+
// // This boolean is used to avoid multiple calls to credentials callback.
197200
if self.first_call_to_credentials.load(Ordering::Relaxed) {
198201
self.first_call_to_credentials
199202
.store(false, Ordering::Relaxed);

0 commit comments

Comments
 (0)