fix(versionup): use latest oauth2 lib

It enables using std::time::Duration natively
This commit is contained in:
Sebastian Thiel
2016-01-30 14:03:03 +01:00
parent ef9e7f1bae
commit a2c6b58d5b
4 changed files with 8 additions and 8 deletions

View File

@@ -772,7 +772,7 @@ else {
match req_result {
Err(err) => {
if let oauth2::Retry::After(d) = dlg.http_error(&err) {
sleep(Duration::from_millis(d.num_milliseconds() as u64));
sleep(d);
continue;
}
${delegate_finish}(false);
@@ -785,7 +785,7 @@ else {
if let oauth2::Retry::After(d) = dlg.http_failure(&res,
json::from_str(&json_err).ok(),
json::from_str(&json_err).ok()) {
sleep(Duration::from_millis(d.num_milliseconds() as u64));
sleep(d);
continue;
}
${delegate_finish}(false);