Skip to content

Commit

Permalink
build: fix build error
Browse files Browse the repository at this point in the history
Signed-off-by: Jakob Steiner <[email protected]>
  • Loading branch information
kosmoz committed Feb 13, 2025
1 parent cbeec52 commit 61dd4e0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cmd/hub/generate/status/generate.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import (
"github.com/glasskube/distr/internal/svc"
"github.com/glasskube/distr/internal/types"
"github.com/glasskube/distr/internal/util"
"github.com/google/uuid"
)

func main() {
Expand All @@ -17,7 +18,7 @@ func main() {
defer func() { _ = registry.Shutdown() }()
ctx = internalctx.WithDb(ctx, registry.GetDbPool())

revisionID := "68297e49-b17b-4d32-8111-f8ee678f73da"
revisionID := uuid.MustParse("68297e49-b17b-4d32-8111-f8ee678f73da")
statusCount := 500000
statusInterval := 5 * time.Second

Expand Down

0 comments on commit 61dd4e0

Please sign in to comment.