mirror of
https://github.com/docker/compose.git
synced 2025-07-23 21:54:40 +02:00
Display “Creating”, not “Creating...”
Signed-off-by: Guillame Tardif <guillaume.tardif@gmail.com>
This commit is contained in:
parent
4d1f265c62
commit
fd54682109
@ -54,7 +54,7 @@ func ErrorEvent(ID string) Event {
|
|||||||
|
|
||||||
// CreatingEvent creates a new Create in progress Event
|
// CreatingEvent creates a new Create in progress Event
|
||||||
func CreatingEvent(ID string) Event {
|
func CreatingEvent(ID string) Event {
|
||||||
return NewEvent(ID, Working, "Creating...")
|
return NewEvent(ID, Working, "Creating")
|
||||||
}
|
}
|
||||||
|
|
||||||
// CreatedEvent creates a new Created (done) Event
|
// CreatedEvent creates a new Created (done) Event
|
||||||
@ -64,7 +64,7 @@ func CreatedEvent(ID string) Event {
|
|||||||
|
|
||||||
// RemovingEvent creates a new Removing in progress Event
|
// RemovingEvent creates a new Removing in progress Event
|
||||||
func RemovingEvent(ID string) Event {
|
func RemovingEvent(ID string) Event {
|
||||||
return NewEvent(ID, Working, "Removing...")
|
return NewEvent(ID, Working, "Removing")
|
||||||
}
|
}
|
||||||
|
|
||||||
// RemovedEvent creates a new removed (done) Event
|
// RemovedEvent creates a new removed (done) Event
|
||||||
|
Loading…
x
Reference in New Issue
Block a user