Skip to content

Commit 2502f5d

Browse files
committed
Update version to 0.10.2 and set common retry count and interval in Kemono source
1 parent a52aaa7 commit 2502f5d

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

cmd/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
)
88

99
const (
10-
Version string = "0.10.1"
10+
Version string = "0.10.2"
1111
)
1212

1313
var VersionCmd = &cobra.Command{

sources/kemono/kemono.go

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ func (k *Kemono) Init() {
2121
Value: config.Cfg.Source.Kemono.Session,
2222
})
2323
}
24+
reqClient.SetCommonRetryCount(3).SetCommonRetryFixedInterval(5)
2425
}
2526

2627
func (k *Kemono) FetchNewArtworksWithCh(artworkCh chan *types.Artwork, limit int) error {

0 commit comments

Comments
 (0)