Skip to content

Commit

Permalink
Merge pull request #265 from gocardless/benwh/event-id-utc
Browse files Browse the repository at this point in the history
  • Loading branch information
benwh committed Jun 20, 2022
2 parents 42854e9 + 5a9cba6 commit c6396c4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
3.8.1
3.8.2
2 changes: 1 addition & 1 deletion pkg/workloads/console/events/events.go
Expand Up @@ -97,7 +97,7 @@ type ConsoleTerminatedEvent struct {
func NewConsoleEventID(context, namespace, console string, time time.Time) string {
return strings.Join([]string{
// year (2006) month (01) day (02) hour (15) minute (04) second (05)
time.Format("20060102150405"),
time.UTC().Format("20060102150405"),
context, namespace, console,
}, "/")
}

0 comments on commit c6396c4

Please sign in to comment.