summaryrefslogtreecommitdiff
path: root/lgc/lgc.go
diff options
context:
space:
mode:
authorWill Hawkins <[email protected]>2022-07-02 01:01:08 -0400
committerWill Hawkins <[email protected]>2022-07-02 01:01:08 -0400
commitf0a9f4a3a50b63127a5e3d4ab2bdda3bbe4d8d0d (patch)
tree2d5fbaac26a35e663beb89d7b96a7085aaadeb3b /lgc/lgc.go
parent793a53ece7fd16cd52735c12f47584c438e1a58b (diff)
[Feature] Support spec v2 3/n
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