Skip to content

Commit 79905a8

Browse files
committed
Up curl timeout to 60 seconds
1 parent 20292f8 commit 79905a8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/curl.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use anyhow::{anyhow, Result};
33
use curl::easy::Easy;
44
use std::time::Duration;
55

6-
const TIMEOUT: u64 = 10; // seconds
6+
const TIMEOUT: u64 = 60; // seconds
77

88
pub(crate) fn existence(url: Url) -> Result<RepoStatus<()>> {
99
let mut handle = Easy::new();

0 commit comments

Comments
 (0)