Skip to content

Commit d73c8d6

Browse files
authoredApr 30, 2024
Merge branch 'main' into standalone-manifest-fix-state-path
2 parents e1a62c8 + 3b0214f commit d73c8d6

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed
 

‎NOTICE.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -15486,11 +15486,11 @@ Contents of probable licence file $GOMODCACHE/github.com/elastic/go-windows@v1.0
1548615486

1548715487
--------------------------------------------------------------------------------
1548815488
Dependency : github.com/elastic/gosigar
15489-
Version: v0.14.2
15489+
Version: v0.14.3
1549015490
Licence type (autodetected): Apache-2.0
1549115491
--------------------------------------------------------------------------------
1549215492

15493-
Contents of probable licence file $GOMODCACHE/github.com/elastic/gosigar@v0.14.2/LICENSE:
15493+
Contents of probable licence file $GOMODCACHE/github.com/elastic/gosigar@v0.14.3/LICENSE:
1549415494

1549515495
Apache License
1549615496
Version 2.0, January 2004

‎go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ require (
122122
github.com/docker/go-connections v0.5.0 // indirect
123123
github.com/elastic/go-structform v0.0.10 // indirect
124124
github.com/elastic/go-windows v1.0.1 // indirect
125-
github.com/elastic/gosigar v0.14.2 // indirect
125+
github.com/elastic/gosigar v0.14.3 // indirect
126126
github.com/emicklei/go-restful/v3 v3.10.1 // indirect
127127
github.com/evanphx/json-patch v5.6.0+incompatible // indirect
128128
github.com/expr-lang/expr v1.16.4 // indirect

‎go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -824,8 +824,8 @@ github.com/elastic/go-windows v1.0.0/go.mod h1:TsU0Nrp7/y3+VwE82FoZF8gC/XFg/Elz6
824824
github.com/elastic/go-windows v1.0.1 h1:AlYZOldA+UJ0/2nBuqWdo90GFCgG9xuyw9SYzGUtJm0=
825825
github.com/elastic/go-windows v1.0.1/go.mod h1:FoVvqWSun28vaDQPbj2Elfc0JahhPB7WQEGa3c814Ss=
826826
github.com/elastic/gojsonschema v1.2.1/go.mod h1:biw5eBS2Z4T02wjATMRSfecfjCmwaDPvuaqf844gLrg=
827-
github.com/elastic/gosigar v0.14.2 h1:Dg80n8cr90OZ7x+bAax/QjoW/XqTI11RmA79ZwIm9/4=
828-
github.com/elastic/gosigar v0.14.2/go.mod h1:iXRIGg2tLnu7LBdpqzyQfGDEidKCfWcCMS0WKyPWoMs=
827+
github.com/elastic/gosigar v0.14.3 h1:xwkKwPia+hSfg9GqrCUKYdId102m9qTJIIr7egmK/uo=
828+
github.com/elastic/gosigar v0.14.3/go.mod h1:iXRIGg2tLnu7LBdpqzyQfGDEidKCfWcCMS0WKyPWoMs=
829829
github.com/elastic/package-spec/v2 v2.6.0/go.mod h1:ks9/FaVOS+vCrGRQcDvXAd2FlmB84mrLikbRiO6ACuk=
830830
github.com/elazarl/goproxy v0.0.0-20180725130230-947c36da3153 h1:yUdfgN0XgIJw7foRItutHYUIhlcKzcSf5vDpdhQAKTc=
831831
github.com/elazarl/goproxy v0.0.0-20180725130230-947c36da3153/go.mod h1:/Zj4wYkgs4iZTTu3o/KG3Itv/qCCa8VVMlb3i9OVuzc=

‎internal/pkg/agent/application/upgrade/step_download_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -231,9 +231,9 @@ func TestDownloadWithRetries(t *testing.T) {
231231
// Download timeout expired (before all retries are exhausted)
232232
t.Run("download_timeout_expired", func(t *testing.T) {
233233
testCaseSettings := settings
234-
testCaseSettings.Timeout = 200 * time.Millisecond
234+
testCaseSettings.Timeout = 500 * time.Millisecond
235235
testCaseSettings.RetrySleepInitDuration = 10 * time.Millisecond
236-
// exponential backoff with 10ms init and 200ms timeout should fit at least 3 attempts.
236+
// exponential backoff with 10ms init and 500ms timeout should fit at least 3 attempts.
237237
minNmExpectedAttempts := 3
238238

239239
mockDownloaderCtor := func(version *agtversion.ParsedSemVer, log *logger.Logger, settings *artifact.Config, upgradeDetails *details.Details) (download.Downloader, error) {

0 commit comments

Comments
 (0)