diff options
| author | Will Hawkins <[email protected]> | 2022-07-02 01:01:08 -0400 |
|---|---|---|
| committer | Will Hawkins <[email protected]> | 2022-07-02 01:01:08 -0400 |
| commit | f0a9f4a3a50b63127a5e3d4ab2bdda3bbe4d8d0d (patch) | |
| tree | 2d5fbaac26a35e663beb89d7b96a7085aaadeb3b /lgc/lgc.go | |
| parent | 793a53ece7fd16cd52735c12f47584c438e1a58b (diff) | |
[Feature] Support spec v2 3/n
Diffstat (limited to 'lgc/lgc.go')
| -rw-r--r-- | lgc/lgc.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |
