Merge pull request 'by Robin at 20240104; fix divide by 2' (#42) from feat-20230102-001-Robin into test
Reviewed-on: #42
This commit is contained in:
commit
ae291c5b96
|
@ -30,5 +30,6 @@ func (s *ScriptsService) QueryCallCount(url string, logpath string) (count int,
|
||||||
str = strings.ReplaceAll(str, "\n", "")
|
str = strings.ReplaceAll(str, "\n", "")
|
||||||
str = strings.ReplaceAll(str, "\r", "")
|
str = strings.ReplaceAll(str, "\r", "")
|
||||||
count, err = strconv.Atoi(str)
|
count, err = strconv.Atoi(str)
|
||||||
|
count = count / 2
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue