Skip to content

Commit 093e36f

Browse files
authored
update DefaultSearchLogStartTimestamp type to int64 (#2522)
1 parent 85179a9 commit 093e36f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tencentcloud/common/cloud_common.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import (
1616

1717
const (
1818
// DefaultSearchLogStartTimestamp sync logs start time 2023-11-07 16:41:00
19-
DefaultSearchLogStartTimestamp = 1699346460000
19+
DefaultSearchLogStartTimestamp int64 = 1699346460000
2020

2121
DefaultTopicId = "aef50d54-b17d-4782-8618-a7873203ec29"
2222

@@ -40,7 +40,7 @@ func GetResourceCreatorAccountInfo(client *connectivity.TencentCloudClient, reso
4040
}
4141

4242
request := cls.NewSearchLogRequest()
43-
request.From = helper.IntInt64(DefaultSearchLogStartTimestamp)
43+
request.From = helper.Int64(DefaultSearchLogStartTimestamp)
4444
request.To = helper.Int64(CurrentTimeMillisecond())
4545
request.TopicId = helper.String(DefaultTopicId)
4646

0 commit comments

Comments
 (0)