3
0
mirror of https://github.com/ergochat/ergo.git synced 2024-11-10 22:19:31 +01:00

use shorter batch IDs

This commit is contained in:
Shivaram Lingamneni 2020-05-03 03:27:13 -04:00
parent 11e1939c9b
commit 3a571f28ac

View File

@ -231,7 +231,7 @@ func (session *Session) HasHistoryCaps() bool {
// this allows ~4 billion such batches which should be fine.
func (session *Session) generateBatchID() string {
id := atomic.AddUint32(&session.batchCounter, 1)
return strconv.Itoa(int(id))
return strconv.FormatInt(int64(id), 32)
}
// WhoWas is the subset of client details needed to answer a WHOWAS query