Skip to content

Commit

Permalink
chore: bcs-task mysql store step message use text type
Browse files Browse the repository at this point in the history
  • Loading branch information
ifooth committed Sep 14, 2024
1 parent d4bb841 commit ad721b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bcs-common/common/task/revokers/etcd/revoke.go
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ func (b *etcdRevoker) cleanupRevokeSign() {
defer b.mtx.Unlock()

for taskID, sign := range b.revokeSignMap {
if time.Since(sign.registerTime) > time.Hour*24 {
if time.Since(sign.registerTime) > time.Hour*24*3 {
sign.cancel()
delete(b.revokeSignMap, taskID)
}
Expand Down

0 comments on commit ad721b4

Please sign in to comment.