diff --git a/.github/workflows/nightly.yaml b/.github/workflows/nightly.yaml index 007916a7c..294073952 100644 --- a/.github/workflows/nightly.yaml +++ b/.github/workflows/nightly.yaml @@ -6,6 +6,7 @@ on: push: branches: - 'release/**' + - 'debug-freebsd' schedule: - cron: '0 4 * * *' workflow_dispatch: {} diff --git a/ntpd/src/daemon/server.rs b/ntpd/src/daemon/server.rs index 9a34fb2d1..2f63db02f 100644 --- a/ntpd/src/daemon/server.rs +++ b/ntpd/src/daemon/server.rs @@ -332,7 +332,7 @@ mod tests { socket.send(&serialized).await.unwrap(); let mut buf = [0; 48]; - tokio::time::timeout(Duration::from_millis(10), socket.recv(&mut buf)) + tokio::time::timeout(Duration::from_millis(1000), socket.recv(&mut buf)) .await .unwrap() .unwrap();