Skip to content

Commit 87af7a5

Browse files
Merge branch 'main' into update-otel-to-v0.135.0
2 parents d03e068 + 7728d8a commit 87af7a5

File tree

4 files changed

+17
-11
lines changed

4 files changed

+17
-11
lines changed

.github/CODEOWNERS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313
/deploy/helm/edot-collector @elastic/ingest-otel-data
1414
/deploy/kubernetes @elastic/elastic-agent-control-plane
1515
/dev-tools/kubernetes @elastic/elastic-agent-control-plane
16+
/docs/release-notes @elastic/ingest-docs
17+
/docs/docset.yml @elastic/ingest-docs
1618
/internal/pkg/composable/providers/kubernetes @elastic/elastic-agent-control-plane
1719
/internal/pkg/otel/samples/darwin/autoops_es.yml @elastic/opex
1820
/internal/pkg/otel/samples/linux/autoops_es.yml @elastic/opex

.package-version

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"version": "9.2.0-SNAPSHOT",
3-
"build_id": "9.2.0-ae69fe57",
4-
"manifest_url": "https://snapshots.elastic.co/9.2.0-ae69fe57/manifest-9.2.0-SNAPSHOT.json",
5-
"summary_url": "https://snapshots.elastic.co/9.2.0-ae69fe57/summary-9.2.0-SNAPSHOT.html",
3+
"build_id": "9.2.0-a3e57754",
4+
"manifest_url": "https://snapshots.elastic.co/9.2.0-a3e57754/manifest-9.2.0-SNAPSHOT.json",
5+
"summary_url": "https://snapshots.elastic.co/9.2.0-a3e57754/summary-9.2.0-SNAPSHOT.html",
66
"core_version": "9.2.0",
7-
"stack_build_id": "9.2.0-ae69fe57-SNAPSHOT"
7+
"stack_build_id": "9.2.0-a3e57754-SNAPSHOT"
88
}

dev-tools/mage/settings.go

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -162,17 +162,18 @@ func initGlobals() {
162162

163163
versionQualifier, versionQualified = os.LookupEnv("VERSION_QUALIFIER")
164164

165-
agentPackageVersion = EnvOr(agentPackageVersionEnvVar, "")
166-
167-
ManifestURL = EnvOr(ManifestUrlEnvVar, "")
168-
PackagingFromManifest = ManifestURL != ""
169-
170-
// order matters this must be called last as it will override some of the
171-
// values above
165+
// order matters: this will override some of the values. Those values can be used
166+
// as fallback for the variables below (mainly agentPackageVersion and ManifestURL)
172167
err = initPackageVersion()
173168
if err != nil {
174169
panic(fmt.Errorf("failed to init package version: %w", err))
175170
}
171+
172+
agentPackageVersion = EnvOr(agentPackageVersionEnvVar, agentPackageVersion)
173+
174+
ManifestURL = EnvOr(ManifestUrlEnvVar, ManifestURL)
175+
PackagingFromManifest = ManifestURL != ""
176+
176177
}
177178

178179
// ProjectType specifies the type of project (OSS vs X-Pack).

testing/integration/ess/beat_receivers_test.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -686,6 +686,9 @@ func TestBeatsReceiverLogs(t *testing.T) {
686686
},
687687
Stack: nil,
688688
})
689+
690+
t.Skip("Skip this test as it's flaky. See https://github.com/elastic/elastic-agent/issues/9890")
691+
689692
type configOptions struct {
690693
RuntimeExperimental string
691694
}

0 commit comments

Comments
 (0)