From f0a9f4a3a50b63127a5e3d4ab2bdda3bbe4d8d0d Mon Sep 17 00:00:00 2001 From: Will Hawkins Date: Sat, 2 Jul 2022 01:01:08 -0400 Subject: [Feature] Support spec v2 3/n --- lgc/lgc.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lgc') 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 -- cgit v1.2.3