diff options
| author | soryu <soryu@soryu.co> | 2026-01-23 03:34:44 +0000 |
|---|---|---|
| committer | soryu <soryu@soryu.co> | 2026-01-23 03:34:44 +0000 |
| commit | 3230c8b729101ce227e10efcb181fafe83fc8d0a (patch) | |
| tree | 75efea0e02be1501a73f8539e2a727cd19cdb121 /makima/src | |
| parent | 9e286c146e29e714b3b209b4d948d75cce179b05 (diff) | |
| download | soryu-3230c8b729101ce227e10efcb181fafe83fc8d0a.tar.gz soryu-3230c8b729101ce227e10efcb181fafe83fc8d0a.zip | |
[WIP] Heartbeat checkpoint - 2026-01-23 03:34:44 UTC
Diffstat (limited to 'makima/src')
| -rw-r--r-- | makima/src/daemon/cli/supervisor.rs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/makima/src/daemon/cli/supervisor.rs b/makima/src/daemon/cli/supervisor.rs index 7e17135..3bc8525 100644 --- a/makima/src/daemon/cli/supervisor.rs +++ b/makima/src/daemon/cli/supervisor.rs @@ -60,9 +60,13 @@ pub struct WaitArgs { #[arg(index = 1)] pub task_id: Uuid, - /// Timeout in seconds + /// Timeout in seconds (total wait time) #[arg(index = 2, default_value = "300")] pub timeout: i32, + + /// Polling interval in seconds (how often to check task status via client-side polling) + #[arg(long, default_value = "5")] + pub poll_interval: u64, } /// Arguments for read-file command. |
