summaryrefslogtreecommitdiff
path: root/event.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-10-27 02:55:08 -0500
committerJeff Carr <[email protected]>2024-10-27 02:55:08 -0500
commit71f83d400048f6d4219793a76a3ffce16b8c63d8 (patch)
tree5e1935b34d87cf27adfce3cb58140cb1059b7e87 /event.go
parentd0767eb9843fcdb9ab0e73200d8a9516e28c200c (diff)
prepare to validate spice ports
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'event.go')
-rw-r--r--event.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/event.go b/event.go
index 0a8ea63..3934ca1 100644
--- a/event.go
+++ b/event.go
@@ -110,7 +110,8 @@ func Start(name string) (bool, string) {
dur := time.Since(me.unstable) // how long has the cluster been stable?
result = fmt.Sprintln("should start droplet", name, "here. grid stable for:", shell.FormatDuration(dur))
if dur < me.unstableTimeout {
- result += "grid is still too unstable"
+ tmp := shell.FormatDuration(me.unstableTimeout)
+ result += "grid is still too unstable (unstable timeout = " + tmp + ")"
return false, result
}