summaryrefslogtreecommitdiff
path: root/lgc/lgc.go
diff options
context:
space:
mode:
Diffstat (limited to 'lgc/lgc.go')
-rw-r--r--lgc/lgc.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/lgc/lgc.go b/lgc/lgc.go
index b0694db..50b15c6 100644
--- a/lgc/lgc.go
+++ b/lgc/lgc.go
@@ -245,7 +245,7 @@ func (lgd *LoadGeneratingConnectionDownload) Start(
debugLevel debug.DebugLevel,
) bool {
lgd.downloaded = 0
- lgd.clientId = utilities.GenerateConnectionId()
+ lgd.clientId = utilities.GenerateUniqueId()
transport := http2.Transport{}
transport.TLSClientConfig = &tls.Config{}
@@ -400,7 +400,7 @@ func (lgu *LoadGeneratingConnectionUpload) Start(
debugLevel debug.DebugLevel,
) bool {
lgu.uploaded = 0
- lgu.clientId = utilities.GenerateConnectionId()
+ lgu.clientId = utilities.GenerateUniqueId()
lgu.debug = debugLevel
// See above for the rationale of doing http2.Transport{} here