From e9733fa6bcb711b54f8367cd517eab8dbbe1836b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Deroide?= Date: Thu, 2 Jul 2026 13:30:00 +0200 Subject: [PATCH 1/2] fix eip show: time is expressed in second at the API level --- cmd/compute/elastic_ip/elastic_ip_show.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/compute/elastic_ip/elastic_ip_show.go b/cmd/compute/elastic_ip/elastic_ip_show.go index 44a16d79d..1015b0f2b 100644 --- a/cmd/compute/elastic_ip/elastic_ip_show.go +++ b/cmd/compute/elastic_ip/elastic_ip_show.go @@ -162,8 +162,8 @@ func (c *elasticIPShowCmd) CmdRun(_ *cobra.Command, _ []string) error { out.HealthcheckMode = string(elasticIp.Healthcheck.Mode) out.HealthcheckPort = elasticIp.Healthcheck.Port out.HealthcheckURI = elasticIp.Healthcheck.URI - out.HealthcheckInterval = time.Duration(elasticIp.Healthcheck.Interval) - out.HealthcheckTimeout = time.Duration(elasticIp.Healthcheck.Timeout) + out.HealthcheckInterval = time.Duration(elasticIp.Healthcheck.Interval) * time.Second + out.HealthcheckTimeout = time.Duration(elasticIp.Healthcheck.Timeout) * time.Second out.HealthcheckStrikesOK = elasticIp.Healthcheck.StrikesOk out.HealthcheckStrikesFail = elasticIp.Healthcheck.StrikesFail out.HealthcheckTLSSNI = elasticIp.Healthcheck.TlsSNI From 53e12e53025070918e6ae820dc18f94fc8ffd2d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Deroide?= Date: Fri, 3 Jul 2026 12:51:44 +0200 Subject: [PATCH 2/2] update changelog --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 37ffc60a2..24ee8e02c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## Unreleased +### Bug fixes +- fix(eip): EIP healthchecks time are in seconds at the API level #858 + ## 1.94.0 ### Features