Skip to content

Commit 2bb816e

Browse files
cloudggecesmarvin
authored andcommitted
Merge branch 'release/v1.7.1'
2 parents d13710e + d07d9f7 commit 2bb816e

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [v1.7.1] - 2025-08-29
11+
### Fixed
12+
- [#70] use UnixMilli instead of Unix Time for DebugMode Status request
13+
1014
## [v1.7.0] - 2025-08-14
1115
### Added
1216
- [#66] Create debugMode-CRs

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Set these to the desired values
22
ARTIFACT_ID=k8s-ces-control
3-
VERSION=1.7.0
3+
VERSION=1.7.1
44
GOTAG=1.24.3
55
STAGE?=production
66
LOG_LEVEL?=info

packages/debug/service.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ func (s *defaultDebugModeService) Status(ctx context.Context, _ *types.BasicRequ
137137
return nil, fmt.Errorf("ERROR: failed to get debug-mode: %q", err)
138138
}
139139

140-
return &pbMaintenance.DebugModeStatusResponse{IsEnabled: debugMode.Status.Phase != v1.DebugModeStatusCompleted, DisableAtTimestamp: debugMode.Spec.DeactivateTimestamp.Unix()}, nil
140+
return &pbMaintenance.DebugModeStatusResponse{IsEnabled: debugMode.Status.Phase != v1.DebugModeStatusCompleted, DisableAtTimestamp: debugMode.Spec.DeactivateTimestamp.UnixMilli()}, nil
141141
}
142142

143143
func noInheritCancel(_ context.Context) (context.Context, context.CancelFunc) {

0 commit comments

Comments
 (0)