Skip to content

Commit

Permalink
feat(coordinator): bump version (#952)
Browse files Browse the repository at this point in the history
Co-authored-by: georgehao <[email protected]>
  • Loading branch information
georgehao and georgehao authored Sep 19, 2023
1 parent afb6476 commit dcd85b2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion common/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"runtime/debug"
)

var tag = "v4.3.10"
var tag = "v4.3.11"

var commit = func() string {
if info, ok := debug.ReadBuildInfo(); ok {
Expand Down
2 changes: 1 addition & 1 deletion coordinator/internal/controller/cron/cleanup_challenge.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
func (c *Collector) cleanupChallenge() {
defer func() {
if err := recover(); err != nil {
nerr := fmt.Errorf("clean challenge panic error:%v", err)
nerr := fmt.Errorf("clean challenge panic error: %v", err)
log.Warn(nerr.Error())
}
}()
Expand Down

0 comments on commit dcd85b2

Please sign in to comment.