We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c491b24 commit a34ee8fCopy full SHA for a34ee8f
lib/src/deploy.rs
@@ -49,6 +49,7 @@ pub(crate) struct ImageState {
49
/// Download information
50
#[derive(Debug, serde::Serialize)]
51
pub struct JsonProgress {
52
+ pub stage: String,
53
pub done_bytes: u64,
54
pub download_bytes: u64,
55
pub image_bytes: u64,
@@ -284,6 +285,7 @@ async fn handle_layer_progress_print_jsonl(
284
285
let curr = std::time::Instant::now();
286
if curr.duration_since(last_json_written).as_secs_f64() > 0.2 {
287
let json = JsonProgress {
288
+ stage: "fetching".to_string(),
289
done_bytes,
290
download_bytes,
291
image_bytes,
0 commit comments