mirror of
https://github.com/ergochat/ergo.git
synced 2024-11-10 22:19:31 +01:00
Merge pull request #975 from slingamn/shorten_batch_id
use shorter batch IDs
This commit is contained in:
commit
872fd3e77c
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user