Skip to content

Commit 393ca93

Browse files
committed
Merge branch 'dev' of github.com:newrelic/newrelic-php-agent into dev
2 parents 108af43 + 8a5c2f8 commit 393ca93

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
11.1.0
1+
11.2.0

axiom/nr_version.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
/*
2424
* Current version naming scheme is flowers
2525
*
26-
* cosmos 29Jun2022 (10.0)
2726
* dahlia 19Sep2022 (10.1)
2827
* echinacea 03Oct2022 (10.2)
2928
* freesia 03Nov2022 (10.3)
@@ -47,8 +46,9 @@
4746
* xerophyllum 20May2024 (10.21)
4847
* yarrow 26Jun2024 (10.22)
4948
* zinnia 30Jul2024 (11.0)
49+
* amethyst 26Aug2024 (11.1)
5050
*/
51-
#define NR_CODENAME "amethyst"
51+
#define NR_CODENAME "bowenite"
5252

5353
const char* nr_version(void) {
5454
return NR_STR2(NR_VERSION);

daemon/internal/newrelic/integration/test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -549,7 +549,7 @@ func (t *Test) compareMetricsExist(harvest *newrelic.Harvest) {
549549
// actually the "satisfied" count, not a total count of metric
550550
// as it is for other types of metrics
551551
apdex_metric := strings.HasPrefix(expected, "Apdex/")
552-
if (count == -1 && (apdex_metric || actualCount > 0)) || (actualCount == count) {
552+
if (apdex_metric || (count == -1 && actualCount > 0)) || (actualCount == count) {
553553
metricPasses = true
554554
}
555555

0 commit comments

Comments
 (0)