File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ This is an experimental feature; tracking issue: <https://github.com/containers/
66While the ` bootc status ` tooling allows a client to discover the state
77of the system, during interactive changes such as ` bootc upgrade `
88or ` bootc switch ` it is possible to monitor the status of downloads
9- or other operations at a fine-grained level with ` -progress-fd ` .
9+ or other operations at a fine-grained level with ` -- progress-fd ` .
1010
1111The format of data output over ` --progress-fd ` is [ JSON Lines] ( https://jsonlines.org )
1212which is a series of JSON objects separated by newlines (the intermediate
@@ -29,4 +29,4 @@ Importing and staging are affected by disk speed and the total image size. Pulli
2929is affected by network speed and how many layers invalidate between pulls.
3030Therefore, a large image with a good caching strategy will have longer
3131importing and staging times, and a small bespoke container image will have
32- negligible importing and staging times.
32+ negligible importing and staging times.
Original file line number Diff line number Diff line change @@ -227,7 +227,7 @@ impl ProgressWriter {
227227 }
228228
229229 // For messages that can be dropped, if we already sent an update within this cycle, discard this one.
230- // TODO: Also consider querying the pipe buffer and also dropping if wqe can't do this write.
230+ // TODO: Also consider querying the pipe buffer and also dropping if we can't do this write.
231231 let now = Instant :: now ( ) ;
232232 if !required {
233233 const REFRESH_MS : u32 = 1000 / REFRESH_HZ as u32 ;
You can’t perform that action at this time.
0 commit comments