Skip to content

Commit 439e564

Browse files
committed
Fixes.
1 parent f49be0c commit 439e564

4 files changed

Lines changed: 6 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,7 @@
1919
- When a remote cache hit, we'll now warm the local cache with the hydrated manifest and its
2020
blobs, so the next run resolves locally instead of round-tripping to the remote.
2121
- **Daemon**
22-
- Log files are now named with the current date, e.g., `server.YYYY-MM-DD.log`, instead of a
23-
static name.
22+
- Server log files will now rotate up to 7 times. Older log files will be automatically deleted.
2423
- Webhook delivery and task output archiving are now acknowledged immediately and run in the
2524
background on the daemon, so a client exiting or hitting a deadline no longer cancels the work
2625
mid-flight.

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ semver = "1.0.27"
6363
serde = { version = "1.0.228", features = ["derive"] }
6464
serde_json = "1.0.150"
6565
sha2 = "0.11.0"
66-
starbase = { version = "0.12.2", features = ["clap", "miette"] }
66+
starbase = { version = "0.12.3", features = ["clap", "miette"] }
6767
starbase_archive = { version = "0.13.2", default-features = false, features = [
6868
"miette",
6969
"tar-all",

crates/daemon-server/src/daemon_server.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ use moon_workspace_graph::WorkspaceGraph;
1919
use starbase_utils::fs;
2020
use std::env;
2121
use std::future::Future;
22-
use std::path::{Path, PathBuf};
22+
use std::path::PathBuf;
2323
use std::sync::Arc;
2424
use std::sync::atomic::{AtomicU64, Ordering};
2525
use std::time::{Duration, Instant};
@@ -335,7 +335,7 @@ pub async fn start_daemon_server(
335335
// owner could still hold the lock) and safe to remove before binding.
336336
#[cfg(unix)]
337337
{
338-
let sock = Path::new(&endpoint);
338+
let sock = std::path::Path::new(&endpoint);
339339

340340
if sock.exists() {
341341
fs::remove_file(sock)?;

0 commit comments

Comments
 (0)