File tree 1 file changed +6
-3
lines changed
asyncgit/src/sync/remotes
1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change
1
+ #![ allow( unused_imports, unused) ]
1
2
use super :: push:: ProgressNotification ;
2
3
use crate :: { error:: Result , sync:: cred:: BasicAuthCredential } ;
3
4
use crossbeam_channel:: Sender ;
@@ -83,11 +84,13 @@ impl Callbacks {
83
84
let this = self . clone ( ) ;
84
85
callbacks. credentials (
85
86
move |url, username_from_url, allowed_types| {
86
- this. credentials (
87
+ let cred = this. credentials (
87
88
url,
88
89
username_from_url,
89
90
allowed_types,
90
- )
91
+ ) ;
92
+ // log::debug!("{:?}", &cred);
93
+ cred
91
94
} ,
92
95
) ;
93
96
@@ -193,7 +196,7 @@ impl Callbacks {
193
196
allowed_types
194
197
) ;
195
198
196
- // This boolean is used to avoid multiple calls to credentials callback.
199
+ // // This boolean is used to avoid multiple calls to credentials callback.
197
200
if self . first_call_to_credentials . load ( Ordering :: Relaxed ) {
198
201
self . first_call_to_credentials
199
202
. store ( false , Ordering :: Relaxed ) ;
You can’t perform that action at this time.
0 commit comments