refactor: event ID generation for images, machines, and volumes to align with plan formatting

This commit is contained in:
Pasha Sviderski
2026-04-08 19:16:42 +10:00
parent 3e30a59d4c
commit fe813302b7
4 changed files with 24 additions and 4 deletions
+1 -1
View File
@@ -131,7 +131,7 @@ func (cli *Client) createServiceContainerWithPull(
func (cli *Client) pullImageWithProgress(ctx context.Context, image, machineName, parentEventID string) error {
pw := progress.ContextWriter(ctx)
eventID := fmt.Sprintf("Image %s on %s", image, machineName)
eventID := cliprogress.ImageEventID(image, machineName)
pw.Event(progress.Event{
ID: eventID,
ParentID: parentEventID,