From 22966e8a1c40ed7ca1bb3c981b4abd5cac049ac9 Mon Sep 17 00:00:00 2001 From: Madhu Rajanna Date: Mon, 13 Jan 2025 15:16:06 +0100 Subject: [PATCH] ci: extra commit to fix panic This commit will be removed later Signed-off-by: Madhu Rajanna --- internal/rbd/group/group_mirror.go | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/internal/rbd/group/group_mirror.go b/internal/rbd/group/group_mirror.go index f4a3a61cf..751fd4d67 100644 --- a/internal/rbd/group/group_mirror.go +++ b/internal/rbd/group/group_mirror.go @@ -331,11 +331,22 @@ func (status globalMirrorGroupStatus) GetRemoteSiteStatus(ctx context.Context) ( totalSnapshotDuration += *localSnapInfo.LastSnapshotDuration } err = nil - totalDuration := int64(totalSnapshotDuration / int64(totalImages)) + totalDuration := int64(0) + if totalSnapshotDuration > 0 { + totalDuration = int64(totalSnapshotDuration / int64(totalImages)) + } + totalTime := int64(0) + if totalSnpshotTime > 0 { + totalTime = int64(totalSnpshotTime / int64(totalImages)) + } + totalBytes := int64(0) + if totalSnapshotBytes > 0 { + totalBytes = int64(totalSnapshotBytes / int64(totalImages)) + } // write the total snapshot time, bytes and duration to the description d := localStatus{ - LocalSnapshotTime: int64(totalSnpshotTime / int64(totalImages)), - LastSnapshotBytes: int64(totalSnapshotBytes / int64(totalImages)), + LocalSnapshotTime: totalTime, + LastSnapshotBytes: totalBytes, LastSnapshotDuration: &totalDuration, } description, err := json.Marshal(d)